mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
360 B
CSS
27 lines
360 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:-moz-ui-valid {
|
|
background-color: red;
|
|
}
|
|
|
|
textarea.valid {
|
|
background-color: red;
|
|
}
|
|
textarea.valid:-moz-ui-valid {
|
|
background-color: green;
|
|
}
|