1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-26 23:18:26 +00:00
Files
UXP/layout/reftests/css-valid/select/style.css
T

19 lines
260 B
CSS

/* Override default style */
select:invalid {
box-shadow: none;
}
select.notvalid {
background-color: green;
}
select.notvalid:valid {
background-color: red;
}
select.valid {
background-color: red;
}
select.valid:valid {
background-color: green;
}