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 textarea:invalid {
3 box-shadow: none;
4 }
5
6 textarea.notvalid {
7 background-color: green;
8 }
9 textarea.notvalid:valid {
10 background-color: red;
11 }
12
13 textarea.valid {
14 background-color: red;
15 }
16 textarea.valid:valid {
17 background-color: green;
18 }