summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--functions.php3
-rw-r--r--tt-rss.css10
2 files changed, 10 insertions, 3 deletions
diff --git a/functions.php b/functions.php
index 50228939b..78fec13ad 100644
--- a/functions.php
+++ b/functions.php
@@ -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')) {
diff --git a/tt-rss.css b/tt-rss.css
index 4c4de2de2..816832040 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -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 {