From: Andrew Dolgov Date: Thu, 23 Mar 2006 07:24:06 +0000 (+0100) Subject: article display fixes for RTL (2) X-Git-Tag: 1.1.5~46 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=ed51e128fc86d3d620bdd445271e3bb2b15bdb1d;p=tt-rss.git article display fixes for RTL (2) --- diff --git a/backend.php b/backend.php index 7cc77c64..fef7e9d6 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 "$parsed_updated"; + print "$parsed_updated"; print ""; diff --git a/tt-rss.css b/tt-rss.css index 35434ab5..b04f02ee 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; }