12 lines
162 B
CSS
12 lines
162 B
CSS
label {
|
|
background-color: green;
|
|
}
|
|
|
|
label:disabled {
|
|
background-color: red;
|
|
}
|
|
|
|
/* ref should always be green! */
|
|
.ref:disabled {
|
|
background-color: green;
|
|
}
|