night.css: make headline lightbars a bit more readable

This commit is contained in:
Andrew Dolgov 2018-12-09 06:27:58 +03:00
parent aa63c53097
commit 243a3239ba
3 changed files with 28 additions and 3 deletions

View File

@ -1904,6 +1904,9 @@ body.flat.ttrss_main #feeds-holder #feedTree .counterNode.aux {
color: #cccccc;
border-color: #333333;
}
body.flat.ttrss_main #feeds-holder #feedTree .counterNode {
background: #8f6122;
}
body.flat.ttrss_main #feeds-holder #feedTree .dijitTreeRowSelected {
background: #333333;
border-color: #333333 transparent;
@ -1943,7 +1946,15 @@ 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 .cdm.expanded.active .title {
body.flat.ttrss_main #headlines-frame .hl.active {
background: #7a531d ! important;
}
body.flat.ttrss_main #headlines-frame .hl.Selected,
body.flat.ttrss_main #headlines-frame .cdm.expandable.Selected {
background: #675030;
}
body.flat.ttrss_main #headlines-frame .cdm.expanded.active .title,
body.flat.ttrss_main #headlines-frame .cdm.expandable.active .title {
color: #b87d2c;
}
body.flat.ttrss_main #headlines-frame .cdm.expandable.active {

File diff suppressed because one or more lines are too long

View File

@ -60,6 +60,10 @@ body.flat.ttrss_main {
border-color: @bg-main;
}
.counterNode {
background : darken(@color-accent, 10%);
}
.dijitTreeRowSelected {
background : @bg-main;
border-color : @bg-main transparent;
@ -113,7 +117,17 @@ body.flat.ttrss_main {
color : @fg-light;
}
.cdm.expanded.active .title {
.hl.active {
background : darken(@color-accent, 15%) ! important;
}
.hl.Selected,
.cdm.expandable.Selected {
background : desaturate(darken(@color-accent, 15%), 25%);
}
.cdm.expanded.active .title,
.cdm.expandable.active .title {
color : @color-accent;
}