mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-11-02 12:51:00 +01:00
article display fixes for RTL (2)
This commit is contained in:
parent
2ab29ac601
commit
ed51e128fc
@ -946,8 +946,10 @@
|
|||||||
|
|
||||||
if ($rtl_content) {
|
if ($rtl_content) {
|
||||||
$rtl_tag = "dir=\"RTL\"";
|
$rtl_tag = "dir=\"RTL\"";
|
||||||
|
$rtl_class = "RTL";
|
||||||
} else {
|
} else {
|
||||||
$rtl_tag = "";
|
$rtl_tag = "";
|
||||||
|
$rtl_class = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
$result = db_query($link, "UPDATE ttrss_user_entries
|
$result = db_query($link, "UPDATE ttrss_user_entries
|
||||||
@ -1032,7 +1034,7 @@
|
|||||||
$parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
|
$parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'),
|
||||||
strtotime($line["updated"]));
|
strtotime($line["updated"]));
|
||||||
|
|
||||||
print "<td class=\"postDate\">$parsed_updated</td>";
|
print "<td class=\"postDate$rtl_class\">$parsed_updated</td>";
|
||||||
|
|
||||||
print "</tr>";
|
print "</tr>";
|
||||||
|
|
||||||
|
|||||||
@ -840,6 +840,12 @@ div.postHeader td.postDate {
|
|||||||
color : gray;
|
color : gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div.postHeader td.postDateRTL {
|
||||||
|
font-size : x-small;
|
||||||
|
text-align : left;
|
||||||
|
color : gray;
|
||||||
|
}
|
||||||
|
|
||||||
#feedUpdateErrors {
|
#feedUpdateErrors {
|
||||||
display : none;
|
display : none;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user