night.css: lower brightness of unchecked checkboxes

This commit is contained in:
Andrew Dolgov 2018-12-07 11:57:26 +03:00
parent a538dd0f7f
commit 1337d992c1
3 changed files with 8 additions and 1 deletions

View File

@ -1983,6 +1983,9 @@ body.flat.ttrss_main #content-insert .post .header {
background: #222222;
border-color: #222222;
}
body.flat.ttrss_main .dijitCheckBox:not(.dijitChecked)::before {
color: #999999;
}
body.flat.ttrss_main .insensitive {
color: #999999;
}

File diff suppressed because one or more lines are too long

View File

@ -119,6 +119,10 @@ body.flat.ttrss_main {
}
}
.dijitCheckBox:not(.dijitChecked)::before {
color : @fg-insensitive;
}
.insensitive {
color : @fg-insensitive;
}