[8961] | 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 { |
---|
[16012] | 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; |
---|
[8961] | 20 | } |
---|
[16012] | 21 | .ui-inputList-arrow:hover { |
---|
| 22 | background-position:-30px -105px; |
---|
| 23 | background-color:#999999; |
---|
[8961] | 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 | |
---|
[16012] | 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 | |
---|
[8961] | 41 | li.ui-inputList-item div.ui-inputList-check { |
---|
[16012] | 42 | background-position:-180px -90px; |
---|
[8961] | 43 | } |
---|
[16012] | 44 | li.ui-inputList-item:hover div.ui-inputList-check { |
---|
| 45 | background-position:-180px -105px; |
---|
| 46 | } |
---|
| 47 | |
---|
[8961] | 48 | li.ui-inputList-selected-item div.ui-inputList-check { |
---|
[16012] | 49 | background-position:-195px -90px; |
---|
[8961] | 50 | } |
---|
[16012] | 51 | li.ui-inputList-selected-item:hover div.ui-inputList-check { |
---|
| 52 | background-position:-195px -105px; |
---|
| 53 | } |
---|
[8961] | 54 | |
---|
[16012] | 55 | |
---|
| 56 | |
---|
[8961] | 57 | .ui-error, input[type='text'].ui-error { |
---|
| 58 | background:#ff8080; |
---|
| 59 | border-color:#800000; |
---|
| 60 | color:#800000; |
---|
| 61 | } |
---|