mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
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;
|
|
}
|