mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 01:43:08 +09:00
18 lines
272 B
CSS
18 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;
|
|
}
|