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