fix vfeed group title CSS in not combined mode
This commit is contained in:
parent
642c37ea61
commit
ab0fadf60d
|
@ -390,7 +390,7 @@ class Feeds extends Handler_Protected {
|
||||||
|
|
||||||
$vf_catchup_link = "<a class='catchup' onclick='Feeds.catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
|
$vf_catchup_link = "<a class='catchup' onclick='Feeds.catchupFeedInGroup($feed_id);' href='#'>".__('mark feed as read')."</a>";
|
||||||
|
|
||||||
$reply['content'] .= "<div data-feed-id='$feed_id' class='feed-titl'>".
|
$reply['content'] .= "<div data-feed-id='$feed_id' class='feed-title'>".
|
||||||
"<div style='float : right'>$feed_icon_img</div>".
|
"<div style='float : right'>$feed_icon_img</div>".
|
||||||
"<a class='title' href=\"#\" onclick=\"Feeds.viewfeed({feed:$feed_id})\">".
|
"<a class='title' href=\"#\" onclick=\"Feeds.viewfeed({feed:$feed_id})\">".
|
||||||
$line["feed_title"]."</a>
|
$line["feed_title"]."</a>
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -910,6 +910,25 @@ body.ttrss_main {
|
||||||
-webkit-overflow-scrolling : touch;
|
-webkit-overflow-scrolling : touch;
|
||||||
-webkit-transform: translateZ(0);
|
-webkit-transform: translateZ(0);
|
||||||
-webkit-backface-visibility: hidden;
|
-webkit-backface-visibility: hidden;
|
||||||
|
|
||||||
|
div.feed-title {
|
||||||
|
border: 0px solid @color-link;
|
||||||
|
border-bottom-width: 1px;
|
||||||
|
padding: 5px 3px 5px 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.feed-title a.title {
|
||||||
|
color: @default-text;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.feed-title a {
|
||||||
|
color: @default-text;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.feed-title a:hover {
|
||||||
|
color: @color-link;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#headlines-toolbar_splitter, #toolbar_splitter {
|
#headlines-toolbar_splitter, #toolbar_splitter {
|
||||||
|
|
Loading…
Reference in New Issue