Standardize background colors to light green or light red in several places: * Modqueue positive/negative score backgrounds. * Modqueue quality/sample warning backgrounds. * User feedback positive/negative backgrounds. * Ban expired/unexpired backgrounds. * Flag resolved/unresolved backgrounds (removed; resolved flags no longer have a grey background because of inconsistencies in what resolved means).
10 lines
195 B
SCSS
10 lines
195 B
SCSS
#c-bans #a-index {
|
|
tr[data-expired="true"] {
|
|
background-color: var(--success-background-color);
|
|
}
|
|
|
|
tr[data-expired="false"] {
|
|
background-color: var(--error-background-color);
|
|
}
|
|
}
|