22 lines
248 B
CSS
22 lines
248 B
CSS
#test {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
|
|
.enabled {
|
|
background: red;
|
|
}
|
|
|
|
.disabled {
|
|
background: green;
|
|
}
|
|
|
|
@media -moz-pref("testing.supports.moz-bool-pref") {
|
|
.enabled {
|
|
background: green;
|
|
}
|
|
|
|
.disabled {
|
|
background: red;
|
|
}
|
|
}
|