blob: e8561a2bd37b34974e8afdfff41d5447d743b8d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* Override default style */
select:-moz-ui-invalid {
box-shadow: none;
}
select.notinvalid {
background-color: green;
}
select.notinvalid:-moz-ui-invalid {
background-color: red;
}
select.invalid {
background-color: red;
}
select.invalid:-moz-ui-invalid {
background-color: green;
}
|