1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

in grouped mode, don't display feed titles twice

This commit is contained in:
Andrew Dolgov
2018-12-09 13:57:54 +03:00
parent 302cffb1a7
commit 42780ddeb3
7 changed files with 23 additions and 2 deletions

View File

@@ -148,6 +148,10 @@ div.cdm.active div.content {
color : black;
}
div.cdm.vgrlf .feed {
display : none;
}
.cdm {
div.feed-title {
border: 0px solid @color-link;

View File

@@ -268,6 +268,9 @@ body.ttrss_main .hl a.title.high,
body.ttrss_main .hl span.hl-content.high .preview {
color: #00aa00;
}
body.ttrss_main .hl.vgrlf .feed {
display: none;
}
body.ttrss_main .hl.Unread {
background: white;
}
@@ -1161,6 +1164,9 @@ div.cdm.expanded.Unread div.content {
div.cdm.active div.content {
color: black;
}
div.cdm.vgrlf .feed {
display: none;
}
.cdm div.feed-title {
border: 0px solid #257aa7;
border-bottom-width: 1px;

File diff suppressed because one or more lines are too long

View File

@@ -308,6 +308,10 @@ body.ttrss_main {
}
}
.hl.vgrlf .feed {
display : none;
}
.hl.Unread {
background : white;
}