mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 18:48:31 +00:00
27 lines
344 B
CSS
27 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;
|
|
}
|