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

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

View File

@@ -867,12 +867,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 #cd8b31;
color: white;
background: #cd8b31;
border-radius: 4px;
min-width: 23px;
}
body.ttrss_main i.icon-no-feed {
opacity: 0.2;
}

File diff suppressed because one or more lines are too long

View File

@@ -867,12 +867,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;
}

File diff suppressed because one or more lines are too long