show current unread counter on headlines toolbar if sidebar is hidden

This commit is contained in:
Andrew Dolgov
2019-12-12 07:37:28 +03:00
parent 0a10832491
commit 9c0235ab66
10 changed files with 72 additions and 12 deletions
+11 -1
View File
@@ -866,12 +866,22 @@ body.ttrss_main .dijitDialog h3:first-of-type,
body.ttrss_main .dijitDialog h4:first-of-type {
margin-top: 0px;
}
body.ttrss_main i.icon-syndicate {
body.ttrss_main #toolbar-headlines i.icon-syndicate {
color: #ff7c4b;
margin-right: 8px;
border: 1px solid #ff7c4b;
border-radius: 4px;
}
body.ttrss_main #toolbar-headlines #feed_current_unread {
margin-left: 8px;
font-weight: bold;
text-align: center;
border: 1px solid #2a89bc;
color: white;
background: #2a89bc;
border-radius: 4px;
min-width: 23px;
}
body.ttrss_main i.icon-no-feed {
opacity: 0.2;
}
+1 -1
View File
File diff suppressed because one or more lines are too long
+17 -5
View File
@@ -1025,11 +1025,23 @@ body.ttrss_main .dijitDialog {
}
body.ttrss_main {
i.icon-syndicate {
color : @color-published;
margin-right : 8px;
border : 1px solid @color-published;
border-radius : 4px;
#toolbar-headlines {
i.icon-syndicate {
color: @color-published;
margin-right: 8px;
border: 1px solid @color-published;
border-radius: 4px;
}
#feed_current_unread {
margin-left : 8px;
font-weight : bold;
text-align : center;
border : 1px solid lighten(@color-accent, 5%);;
color : white;
background : lighten(@color-accent, 5%);
border-radius : 4px;
min-width : 23px;
}
}
i.icon-no-feed {