mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
f4c51b73b2
Generated with: find * -type f -exec sed -i -e 's/\<MozBoxShadow\>/boxShadow/g;s/-moz-box-shadow/box-shadow/gi' {} \;
19 lines
282 B
CSS
19 lines
282 B
CSS
/* Override default style */
|
|
textarea:invalid {
|
|
box-shadow: none;
|
|
}
|
|
|
|
textarea.notinvalid {
|
|
background-color: green;
|
|
}
|
|
textarea.notinvalid:invalid {
|
|
background-color: red;
|
|
}
|
|
|
|
textarea.invalid {
|
|
background-color: red;
|
|
}
|
|
textarea.invalid:invalid {
|
|
background-color: green;
|
|
}
|