mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
2900163868
--HG-- extra : rebase_source : 9e7d0a515c3f1bcacdcccc906c611849654ab484
20 lines
216 B
CSS
20 lines
216 B
CSS
.ref {
|
|
background-color: green;
|
|
}
|
|
|
|
.disabled {
|
|
background-color: red;
|
|
}
|
|
|
|
:disabled.disabled {
|
|
background-color: green;
|
|
}
|
|
|
|
.enabled {
|
|
background-color: green;
|
|
}
|
|
|
|
:disabled.enabled {
|
|
background-color: red;
|
|
}
|