tweak headlines layout to prevent long date clipping

This commit is contained in:
Andrew Dolgov 2011-04-19 15:15:10 +04:00
parent 0780f4f4fd
commit 6edeede312
2 changed files with 10 additions and 3 deletions

View File

@ -5211,8 +5211,9 @@
$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')) {

View 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 {