mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 01:43:08 +09:00
26 lines
344 B
CSS
26 lines
344 B
CSS
/* Override default style */
|
|
textarea {
|
|
border: 0px;
|
|
}
|
|
|
|
textarea.ref {
|
|
background-color: green;
|
|
}
|
|
|
|
textarea:invalid {
|
|
box-shadow: none;
|
|
}
|
|
|
|
textarea.notvalid {
|
|
background-color: green;
|
|
}
|
|
textarea.notvalid:valid {
|
|
background-color: red;
|
|
}
|
|
|
|
textarea.valid {
|
|
background-color: red;
|
|
}
|
|
textarea.valid:valid {
|
|
background-color: green;
|
|
}
|