mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
27 lines
356 B
CSS
27 lines
356 B
CSS
/* Override default style */
|
|
textarea {
|
|
border: 0px;
|
|
}
|
|
|
|
textarea.ref {
|
|
background-color: green;
|
|
}
|
|
|
|
textarea:invalid {
|
|
box-shadow: none;
|
|
}
|
|
|
|
textarea.notinvalid {
|
|
background-color: green;
|
|
}
|
|
textarea.notinvalid:invalid {
|
|
background-color: red;
|
|
}
|
|
|
|
textarea.invalid {
|
|
background-color: red;
|
|
}
|
|
textarea.invalid:invalid {
|
|
background-color: green;
|
|
}
|