mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
251 B
CSS
24 lines
251 B
CSS
|
select {
|
||
|
-moz-appearance: none;
|
||
|
}
|
||
|
|
||
|
.ref {
|
||
|
background-color: green;
|
||
|
}
|
||
|
|
||
|
.enabled {
|
||
|
background-color: red;
|
||
|
}
|
||
|
|
||
|
:enabled.enabled {
|
||
|
background-color: green;
|
||
|
}
|
||
|
|
||
|
.disabled {
|
||
|
background-color: green;
|
||
|
}
|
||
|
|
||
|
:enabled.disabled {
|
||
|
background-color: red;
|
||
|
}
|