1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
| div.value, div.select {
| background-color: #FFF;
| }
| div.value {
| font-size: 14px;
| margin: 5px 0 5px 0;
| overflow: hidden;
| border: 1px #666 solid;
| border-radius: 3px;
| position: relative;
| }
| div.select, div.list, div.option_selected {
| font-size: 14px;
| }
| div.select {
| border: 1px #000 solid;
| }
| div.value input, div.value img {
| overflow: visible;
| white-space: nowrap;
| display: inline;
| }
| div.list {
| /*padding: 0 3px 0 3px;*/
| white-space: nowrap;
| }
| div.select {
| display: none;
| position: absolute;
| z-index: 50;
| overflow: auto;
| height: 155px;
| }
| div.list img, div.option_selected img {
| background-color: transparent;
| display: inline;
| padding: 0 3px 0 3px;
| }
| div.list:hover, div.option_selected, div.option_selected:hover {
| background: #64beff;
| }
| div.list:hover {
| border: none;
| background: #64beff;
| }
| div.option_selected, div.option_selected:hover {
| border: 1px #000 dashed;
| }
| .x-trigger {
| position: absolute;
| width: 22px;
| top: 0;
| bottom: 0;
| right: 0;
| text-align: right;
| cursor: pointer;
| overflow: hidden;
| }
|
| .x-trigger img {
| width: 22px;
| height: 100%;
| background: url("../images/trigger.png") no-repeat -66px 0;
| }
| .x-trigger img:hover {
| background-position: -44px 0;
| background-color: #F0F0F0;
| }
|
|