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