1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 17:35:56 +00:00

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

This commit is contained in:
Andrew Dolgov
2018-12-09 06:44:53 +03:00
parent d384c004b9
commit 38af3289a1
3 changed files with 27 additions and 2 deletions

View File

@@ -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

View File

@@ -132,7 +132,22 @@ body.flat.ttrss_main {
filter : invert(1);
}
}
.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 {