зеркало из https://github.com/mozilla/gecko-dev.git
20 строки
216 B
CSS
20 строки
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;
|
||
|
}
|