mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-28 00:28:52 +00:00
19 lines
255 B
CSS
19 lines
255 B
CSS
/* Override default style */
|
|
input:invalid {
|
|
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;
|
|
}
|