summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backend.php4
-rw-r--r--tt-rss.css6
2 files changed, 9 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index 7cc77c64f..fef7e9d61 100644
--- a/backend.php
+++ b/backend.php
@@ -946,8 +946,10 @@
if ($rtl_content) {
$rtl_tag = "dir=\"RTL\"";
+ $rtl_class = "RTL";
} else {
$rtl_tag = "";
+ $rtl_class = "";
}
$result = db_query($link, "UPDATE ttrss_user_entries
@@ -1032,7 +1034,7 @@
$parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
strtotime($line["updated"]));
- print "<td class=\"postDate\">$parsed_updated</td>";
+ print "<td class=\"postDate$rtl_class\">$parsed_updated</td>";
print "</tr>";
diff --git a/tt-rss.css b/tt-rss.css
index 35434ab5a..b04f02eeb 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -840,6 +840,12 @@ div.postHeader td.postDate {
color : gray;
}
+div.postHeader td.postDateRTL {
+ font-size : x-small;
+ text-align : left;
+ color : gray;
+}
+
#feedUpdateErrors {
display : none;
}