night.css: do not invert marked/pub enabled pics

master
Andrew Dolgov 6 years ago
parent d384c004b9
commit 38af3289a1

@ -1961,6 +1961,16 @@ 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 .hl.Selected.marked i.marked-pic,
body.flat.ttrss_main #headlines-frame .cdm.expandable.Selected.marked i.marked-pic,
body.flat.ttrss_main #headlines-frame .hl.active.marked i.marked-pic {
filter: invert(1);
}
body.flat.ttrss_main #headlines-frame .hl.Selected.published i.pub-pic,
body.flat.ttrss_main #headlines-frame .cdm.expandable.Selected.published i.pub-pic,
body.flat.ttrss_main #headlines-frame .hl.active.published i.pub-pic {
filter: invert(1);
}
body.flat.ttrss_main #headlines-frame .cdm.expanded.active .title,
body.flat.ttrss_main #headlines-frame .cdm.expandable.active .title {
color: #b87d2c;

File diff suppressed because one or more lines are too long

@ -133,6 +133,21 @@ body.flat.ttrss_main {
}
}
.hl.Selected.marked,
.cdm.expandable.Selected.marked,
.hl.active.marked {
i.marked-pic {
filter : invert(1);
}
}
.hl.Selected.published,
.cdm.expandable.Selected.published,
.hl.active.published {
i.pub-pic {
filter : invert(1);
}
}
.cdm.expanded.active .title,
.cdm.expandable.active .title {

Loading…
Cancel
Save