1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-12 11:28:57 +00:00
Files
UXP/layout/reftests/css-invalid/select/style.css
T

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;
}