in grouped mode, don't display feed titles twice
This commit is contained in:
parent
302cffb1a7
commit
42780ddeb3
|
@ -148,6 +148,10 @@ div.cdm.active div.content {
|
||||||
color : black;
|
color : black;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.cdm.vgrlf .feed {
|
||||||
|
display : none;
|
||||||
|
}
|
||||||
|
|
||||||
.cdm {
|
.cdm {
|
||||||
div.feed-title {
|
div.feed-title {
|
||||||
border: 0px solid @color-link;
|
border: 0px solid @color-link;
|
||||||
|
|
|
@ -268,6 +268,9 @@ body.ttrss_main .hl a.title.high,
|
||||||
body.ttrss_main .hl span.hl-content.high .preview {
|
body.ttrss_main .hl span.hl-content.high .preview {
|
||||||
color: #00aa00;
|
color: #00aa00;
|
||||||
}
|
}
|
||||||
|
body.ttrss_main .hl.vgrlf .feed {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
body.ttrss_main .hl.Unread {
|
body.ttrss_main .hl.Unread {
|
||||||
background: white;
|
background: white;
|
||||||
}
|
}
|
||||||
|
@ -1161,6 +1164,9 @@ div.cdm.expanded.Unread div.content {
|
||||||
div.cdm.active div.content {
|
div.cdm.active div.content {
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
div.cdm.vgrlf .feed {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
.cdm div.feed-title {
|
.cdm div.feed-title {
|
||||||
border: 0px solid #257aa7;
|
border: 0px solid #257aa7;
|
||||||
border-bottom-width: 1px;
|
border-bottom-width: 1px;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -308,6 +308,10 @@ body.ttrss_main {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.hl.vgrlf .feed {
|
||||||
|
display : none;
|
||||||
|
}
|
||||||
|
|
||||||
.hl.Unread {
|
.hl.Unread {
|
||||||
background : white;
|
background : white;
|
||||||
}
|
}
|
||||||
|
|
|
@ -250,6 +250,7 @@ define(["dojo/_base/declare"], function (declare) {
|
||||||
if (hl.marked) row_class += " marked";
|
if (hl.marked) row_class += " marked";
|
||||||
if (hl.published) row_class += " published";
|
if (hl.published) row_class += " published";
|
||||||
if (hl.unread) row_class += " Unread";
|
if (hl.unread) row_class += " Unread";
|
||||||
|
if (headlines.vfeed_group_enabled) row_class += " vgrlf";
|
||||||
|
|
||||||
if (headlines.vfeed_group_enabled && hl.feed_title && this.vgroup_last_feed != hl.feed_id) {
|
if (headlines.vfeed_group_enabled && hl.feed_title && this.vgroup_last_feed != hl.feed_id) {
|
||||||
let vgrhdr = `<div data-feed-id='${hl.feed_id}' class='feed-title'>
|
let vgrhdr = `<div data-feed-id='${hl.feed_id}' class='feed-title'>
|
||||||
|
|
|
@ -268,6 +268,9 @@ body.ttrss_main .hl a.title.high,
|
||||||
body.ttrss_main .hl span.hl-content.high .preview {
|
body.ttrss_main .hl span.hl-content.high .preview {
|
||||||
color: #00aa00;
|
color: #00aa00;
|
||||||
}
|
}
|
||||||
|
body.ttrss_main .hl.vgrlf .feed {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
body.ttrss_main .hl.Unread {
|
body.ttrss_main .hl.Unread {
|
||||||
background: white;
|
background: white;
|
||||||
}
|
}
|
||||||
|
@ -1161,6 +1164,9 @@ div.cdm.expanded.Unread div.content {
|
||||||
div.cdm.active div.content {
|
div.cdm.active div.content {
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
div.cdm.vgrlf .feed {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
.cdm div.feed-title {
|
.cdm div.feed-title {
|
||||||
border: 0px solid #b87d2c;
|
border: 0px solid #b87d2c;
|
||||||
border-bottom-width: 1px;
|
border-bottom-width: 1px;
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue