mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
78294be353
--HG-- extra : rebase_source : 66ef476d46872edcc8ea8cd6488cd14d24ce8446
20 lines
214 B
CSS
20 lines
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;
|
|
}
|