night.css: make headline lightbars a bit more readable (better solution, fixes)
This commit is contained in:
parent
836871a23c
commit
d384c004b9
|
@ -1946,20 +1946,20 @@ body.flat.ttrss_main #headlines-frame .hl.Unread .title,
|
|||
body.flat.ttrss_main #headlines-frame .cdm.Unread .title {
|
||||
color: #e6e6e6;
|
||||
}
|
||||
body.flat.ttrss_main #headlines-frame .hl.active *:not(.dijitCheckBox),
|
||||
body.flat.ttrss_main #headlines-frame .hl.Selected *:not(.dijitCheckBox),
|
||||
body.flat.ttrss_main #headlines-frame .cdm.expandable.Selected *:not(.dijitCheckBox) {
|
||||
body.flat.ttrss_main #headlines-frame .hl.active > *,
|
||||
body.flat.ttrss_main #headlines-frame .hl.Selected > *,
|
||||
body.flat.ttrss_main #headlines-frame .cdm.expandable.Selected > * {
|
||||
filter: invert(1);
|
||||
}
|
||||
body.flat.ttrss_main #headlines-frame .hl.active .updated,
|
||||
body.flat.ttrss_main #headlines-frame .hl.Selected .updated,
|
||||
body.flat.ttrss_main #headlines-frame .cdm.expandable.Selected .updated {
|
||||
color: #222222;
|
||||
body.flat.ttrss_main #headlines-frame .hl.active > * img,
|
||||
body.flat.ttrss_main #headlines-frame .hl.Selected > * img,
|
||||
body.flat.ttrss_main #headlines-frame .cdm.expandable.Selected > * img {
|
||||
filter: invert(1);
|
||||
}
|
||||
body.flat.ttrss_main #headlines-frame .hl.active > .left .dijitCheckBox,
|
||||
body.flat.ttrss_main #headlines-frame .hl.Selected > .left .dijitCheckBox,
|
||||
body.flat.ttrss_main #headlines-frame .cdm.expandable.Selected > .left .dijitCheckBox {
|
||||
filter: invert(1) ! important;
|
||||
body.flat.ttrss_main #headlines-frame .hl.active .dijitCheckBox,
|
||||
body.flat.ttrss_main #headlines-frame .hl.Selected .dijitCheckBox,
|
||||
body.flat.ttrss_main #headlines-frame .cdm.expandable.Selected .dijitCheckBox {
|
||||
filter: invert(1);
|
||||
}
|
||||
body.flat.ttrss_main #headlines-frame .cdm.expanded.active .title,
|
||||
body.flat.ttrss_main #headlines-frame .cdm.expandable.active .title {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -120,18 +120,19 @@ body.flat.ttrss_main {
|
|||
.hl.active,
|
||||
.hl.Selected,
|
||||
.cdm.expandable.Selected {
|
||||
*:not(.dijitCheckBox) {
|
||||
> * {
|
||||
filter : invert(1);
|
||||
|
||||
img {
|
||||
filter : invert(1);
|
||||
}
|
||||
}
|
||||
|
||||
.dijitCheckBox {
|
||||
filter : invert(1);
|
||||
}
|
||||
|
||||
.updated {
|
||||
color : @bg-panel;
|
||||
}
|
||||
|
||||
> .left .dijitCheckBox {
|
||||
filter : invert(1) ! important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.cdm.expanded.active .title,
|
||||
.cdm.expandable.active .title {
|
||||
|
|
Loading…
Reference in New Issue