зеркало из https://github.com/mozilla/gecko-dev.git
20 строки
214 B
CSS
20 строки
214 B
CSS
|
.ref {
|
||
|
background-color: green;
|
||
|
}
|
||
|
|
||
|
.enabled {
|
||
|
background-color: red;
|
||
|
}
|
||
|
|
||
|
:enabled.enabled {
|
||
|
background-color: green;
|
||
|
}
|
||
|
|
||
|
.disabled {
|
||
|
background-color: green;
|
||
|
}
|
||
|
|
||
|
:enabled.disabled {
|
||
|
background-color: red;
|
||
|
}
|