mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 22:18:26 +00:00
19 lines
272 B
CSS
19 lines
272 B
CSS
/* Override default style */
|
|
button:invalid {
|
|
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;
|
|
}
|