mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 01:13:08 +09:00
18 lines
260 B
CSS
18 lines
260 B
CSS
/* Override default style */
|
|
button:invalid {
|
|
box-shadow: none;
|
|
}
|
|
|
|
button.notvalid {
|
|
background-color: green;
|
|
}
|
|
button.notvalid:valid {
|
|
background-color: red;
|
|
}
|
|
|
|
button.valid {
|
|
background-color: red;
|
|
}
|
|
button.valid:valid {
|
|
background-color: green;
|
|
}
|