]> git.wh0rd.org - tt-rss.git/commitdiff
tweak headlines layout to prevent long date clipping
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Tue, 19 Apr 2011 11:15:10 +0000 (15:15 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Tue, 19 Apr 2011 11:15:10 +0000 (15:15 +0400)
functions.php
tt-rss.css

index 50228939b81eb6ce8c52b29c56c207fcf6d0d28a..78fec13adda242de72841c84e14253b6f812bd0b 100644 (file)
 
                                        $reply['content'] .= "</div>";
 
-                                       $reply['content'] .= "<div class=\"hlRight\">";
                                        $reply['content'] .= "<span class=\"hlUpdated\">$updated_fmt</span>";
+                                       $reply['content'] .= "<div class=\"hlRight\">";
+
                                        $reply['content'] .= $score_pic;
 
                                        if ($line["feed_title"] && !get_pref($link, 'VFEED_GROUP_BY_FEED')) {
index 4c4de2de209426b7f6cc9ca230b8e64c9217c9ed..816832040ffd174b5b7af71ca398039b616fa87a 100644 (file)
@@ -1289,8 +1289,14 @@ div.hlRight img {
 span.hlUpdated {
        color : gray;
        font-weight : medium;
-       width : 100px;
-       display : inline-block;
+       min-width : 100px;
+       display : table-cell;
+       width : 100%;
+       vertical-align : middle;
+       padding-top : 4px;
+       padding-bottom : 4px;
+       text-align : right;
+
 }
 
 div.hlLeft input {