1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-20 11:16:36 +02:00

hlFeed: remove unnecessary br

This commit is contained in:
Andrew Dolgov 2013-03-17 16:35:05 +04:00
parent 8b45a5d907
commit cf2f643edb
2 changed files with 5 additions and 5 deletions

View File

@ -446,10 +446,10 @@ class Feeds extends Handler_Protected {
$reply['content'] .= "<span class=\"hlUpdated\">";
if (@$line["feed_title"]) {
$reply['content'] .= "<span class=\"hlFeed\">
$reply['content'] .= "<div class=\"hlFeed\">
<a href=\"#\" onclick=\"viewfeed($feed_id)\">".
$line["feed_title"]."</a><br/>
</span>";
$line["feed_title"]."</a>
</div>";
}
$reply['content'] .= "$updated_fmt</span>";

View File

@ -583,14 +583,14 @@ div.postHeader div {
display : none;
}
span.hlFeed, span.hlFeed a {
div.hlFeed, div.hlFeed a {
font-size : 10px;
color : gray;
font-style : italic;
font-weight : normal;
}
span.hlFeed a:hover {
div.hlFeed a:hover {
color : #4684ff;
}