1 | /* clear css */ |
---|
2 | |
---|
3 | .ui-inputList, |
---|
4 | .ui-inputList-list { |
---|
5 | background:#DDDDDD; |
---|
6 | border:1px solid #999999; |
---|
7 | color:#666666; |
---|
8 | } |
---|
9 | |
---|
10 | .ui-inputList-arrow { |
---|
11 | border:0px; |
---|
12 | color:#FF7700; |
---|
13 | background-image:url(./../icons/buttons.png); |
---|
14 | background-repeat:no-repeat; |
---|
15 | background-position:-30px -90px; |
---|
16 | -moz-border-radius:2px; |
---|
17 | -webkit-border-radius:2px; |
---|
18 | -khtml-border-radius:2px; |
---|
19 | border-radius:2px; |
---|
20 | } |
---|
21 | .ui-inputList-arrow:hover { |
---|
22 | background-position:-30px -105px; |
---|
23 | background-color:#999999; |
---|
24 | } |
---|
25 | |
---|
26 | li.ui-inputList-item:hover { |
---|
27 | background-color:#AAAAAA; |
---|
28 | color:#DDDDDD; |
---|
29 | } |
---|
30 | |
---|
31 | .ui-inputList-selected-item { |
---|
32 | background-color:#999999; |
---|
33 | } |
---|
34 | |
---|
35 | li.ui-inputList-item div.ui-inputList-check, |
---|
36 | li.ui-inputList-selected-item div.ui-inputList-check { |
---|
37 | background-image:url(./../icons/buttons.png); |
---|
38 | background-repeat:no-repeat; |
---|
39 | } |
---|
40 | |
---|
41 | li.ui-inputList-item div.ui-inputList-check { |
---|
42 | background-position:-180px -90px; |
---|
43 | } |
---|
44 | li.ui-inputList-item:hover div.ui-inputList-check { |
---|
45 | background-position:-180px -105px; |
---|
46 | } |
---|
47 | |
---|
48 | li.ui-inputList-selected-item div.ui-inputList-check { |
---|
49 | background-position:-195px -90px; |
---|
50 | } |
---|
51 | li.ui-inputList-selected-item:hover div.ui-inputList-check { |
---|
52 | background-position:-195px -105px; |
---|
53 | } |
---|
54 | |
---|
55 | |
---|
56 | |
---|
57 | .ui-error, input[type='text'].ui-error { |
---|
58 | background:#ff8080; |
---|
59 | border-color:#800000; |
---|
60 | color:#800000; |
---|
61 | } |
---|