mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
13 lines
162 B
CSS
13 lines
162 B
CSS
|
output {
|
||
|
background-color: green;
|
||
|
}
|
||
|
|
||
|
output:enabled {
|
||
|
background-color: red;
|
||
|
}
|
||
|
|
||
|
/* ref should always be green! */
|
||
|
.ref:enabled {
|
||
|
background-color: green;
|
||
|
}
|