diff options
Diffstat (limited to 'themes/light/tt-rss.less')
| -rw-r--r-- | themes/light/tt-rss.less | 33 |
1 files changed, 28 insertions, 5 deletions
diff --git a/themes/light/tt-rss.less b/themes/light/tt-rss.less index 12d3cea34..a39f6677b 100644 --- a/themes/light/tt-rss.less +++ b/themes/light/tt-rss.less @@ -646,7 +646,7 @@ body.ttrss_main { height : 14px; flex-shrink : 0; - &.aux, &.marked { + &.aux, &.marked, &.published { background : @color-panel-bg; color : lighten(@default-text, 10%); border-color : darken(@color-panel-bg, 10%); @@ -654,7 +654,12 @@ body.ttrss_main { &.marked { border-color : @color-accent-marked; - background : lighten(@color-accent-marked, 60%); + background : @default-bg; + } + + &.published { + border-color : @color-accent-published; + background : @default-bg; } } @@ -1141,18 +1146,36 @@ body.ttrss_main[view-mode="marked"] #feeds-holder #feedTree { } } +body.ttrss_main[view-mode="published"] #feeds-holder #feedTree { + .dijitTreeRow.Has_Published .dijitTreeLabel { + color : @color-accent-published; + } + .dijitTreeRow.Has_Published .counterNode.published { + display : inline-block; + } +} + body.ttrss_main[view-mode="marked"][hide-read-feeds="true"][hide-read-shows-special="true"] #feeds-holder #feedTree .dijitTreeRow:not(.AlwaysVisible):not(.Special):not(.Has_Marked) { display : none; } +body.ttrss_main[view-mode="published"][hide-read-feeds="true"][hide-read-shows-special="true"] #feeds-holder #feedTree + .dijitTreeRow:not(.AlwaysVisible):not(.Special):not(.Has_Published) { + display : none; +} + body.ttrss_main[view-mode="marked"][hide-read-feeds="true"][hide-read-shows-special="false"] #feeds-holder #feedTree .dijitTreeRow:not(.AlwaysVisible):not(.Has_Marked) { display : none; } +body.ttrss_main[view-mode="published"][hide-read-feeds="true"][hide-read-shows-special="false"] #feeds-holder #feedTree + .dijitTreeRow:not(.AlwaysVisible):not(.Has_Published) { + display : none; +} -body.ttrss_main:not([view-mode="marked"]) #feeds-holder #feedTree { +body.ttrss_main:not([view-mode="marked"]):not([view-mode="published"]) #feeds-holder #feedTree { .dijitTreeRow.Unread .counterNode.unread { display : inline-block; } @@ -1161,12 +1184,12 @@ body.ttrss_main:not([view-mode="marked"]) #feeds-holder #feedTree { } } -body.ttrss_main:not([view-mode="marked"])[hide-read-feeds="true"][hide-read-shows-special="true"] #feeds-holder #feedTree +body.ttrss_main:not([view-mode="marked"]):not([view-mode="published"])[hide-read-feeds="true"][hide-read-shows-special="true"] #feeds-holder #feedTree .dijitTreeRow:not(.Unread):not(.AlwaysVisible):not(.Special) { display : none; } -body.ttrss_main:not([view-mode="marked"])[hide-read-feeds="true"][hide-read-shows-special="false"] #feeds-holder #feedTree +body.ttrss_main:not([view-mode="marked"]):not([view-mode="published"])[hide-read-feeds="true"][hide-read-shows-special="false"] #feeds-holder #feedTree .dijitTreeRow:not(.Unread):not(.AlwaysVisible) { display : none; } |