]> git.wh0rd.org Git - tt-rss.git/commitdiff
hlFeed: remove unnecessary br
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Sun, 17 Mar 2013 12:35:05 +0000 (16:35 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Sun, 17 Mar 2013 12:35:05 +0000 (16:35 +0400)
classes/feeds.php
tt-rss.css

index e96aaba30cbde6d8e34c09f42e002a6e4ecaadd1..b5010a05f65a210929d510909027d88097d9e62d 100644 (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>";
index 0b7e8ec7e22f88b801ca47255adddfdfc5abe6ef..6c8659e071deaef5c9a3abd16b9f0ef2d11e9adc 100644 (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;
 }