mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9532ebf9c3
--HG-- extra : rebase_source : 66ef476d46872edcc8ea8cd6488cd14d24ce8446
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;
|
|
}
|