From ed51e128fc86d3d620bdd445271e3bb2b15bdb1d Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 23 Mar 2006 08:24:06 +0100 Subject: [PATCH] article display fixes for RTL (2) --- backend.php | 4 +++- tt-rss.css | 6 ++++++ 2 files changed, 9 insertions(+), 1 deletion(-) 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 "$parsed_updated"; + print "$parsed_updated"; print ""; 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; }