Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review: https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* Override default style */
2 select:invalid {
3 box-shadow: none;
4 }
5
6 select.notinvalid {
7 background-color: green;
8 }
9 select.notinvalid:invalid {
10 background-color: red;
11 }
12
13 select.invalid {
14 background-color: red;
15 }
16 select.invalid:invalid {
17 background-color: green;
18 }