gecko-dev/layout/reftests/css-invalid/select/style.css

19 строки
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;
}