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
| .combo {
| display: inline-block;
| white-space: nowrap;
| margin: 0;
| padding: 0;
| border-width: 1px;
| border-style: solid;
| overflow: hidden;
| vertical-align: middle;
| }
| .combo .combo-text {
| font-size: 12px;
| border: 0px;
| line-height: 20px;
| height: 20px;
| margin: 0;
| padding: 0px 2px;
| *margin-top: -1px;
| *height: 18px;
| *line-height: 18px;
| _height: 18px;
| _line-height: 18px;
| vertical-align: baseline;
| }
| .combo-arrow {
| width: 18px;
| height: 20px;
| overflow: hidden;
| display: inline-block;
| vertical-align: top;
| cursor: pointer;
| opacity: 0.6;
| filter: alpha(opacity=60);
| }
| .combo-arrow-hover {
| opacity: 1.0;
| filter: alpha(opacity=100);
| }
| .combo-panel {
| overflow: auto;
| }
| .combo-arrow {
| background: url('images/combo_arrow.png') no-repeat center center;
| }
| .combo,
| .combo-panel {
| background-color: #ffffff;
| }
| .combo {
| border-color: #D4D4D4;
| background-color: #ffffff;
| }
| .combo-arrow {
| background-color: #F2F2F2;
| }
| .combo-arrow-hover {
| background-color: #e6e6e6;
| }
|
|