mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
286 B
CSS
19 lines
286 B
CSS
|
/* Override default style */
|
||
|
textarea:invalid {
|
||
|
box-shadow: none;
|
||
|
}
|
||
|
|
||
|
textarea.notvalid {
|
||
|
background-color: green;
|
||
|
}
|
||
|
textarea.notvalid:-moz-ui-valid {
|
||
|
background-color: red;
|
||
|
}
|
||
|
|
||
|
textarea.valid {
|
||
|
background-color: red;
|
||
|
}
|
||
|
textarea.valid:-moz-ui-valid {
|
||
|
background-color: green;
|
||
|
}
|