mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
78294be353
--HG-- extra : rebase_source : 66ef476d46872edcc8ea8cd6488cd14d24ce8446
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;
|
|
}
|