mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-06 02:30:56 +00:00
19 lines
272 B
CSS
19 lines
272 B
CSS
/* Override default style */
|
|
select:invalid {
|
|
box-shadow: none;
|
|
}
|
|
|
|
select.notinvalid {
|
|
background-color: green;
|
|
}
|
|
select.notinvalid:invalid {
|
|
background-color: red;
|
|
}
|
|
|
|
select.invalid {
|
|
background-color: red;
|
|
}
|
|
select.invalid:invalid {
|
|
background-color: green;
|
|
}
|