mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-14 05:35:55 +00:00
tweak the zoomed article a little bit
This commit is contained in:
@@ -382,7 +382,7 @@ span.hlLabelRef {
|
|||||||
|
|
||||||
div.postHeader div.postDate {
|
div.postHeader div.postDate {
|
||||||
text-align : right;
|
text-align : right;
|
||||||
color : #555;
|
color : #909090;
|
||||||
float : right;
|
float : right;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1014,10 +1014,18 @@ body#ttrssZoom {
|
|||||||
margin-left : auto;
|
margin-left : auto;
|
||||||
margin-right : auto;
|
margin-right : auto;
|
||||||
padding : 20px;
|
padding : 20px;
|
||||||
max-width : 800px;
|
max-width : 670px;
|
||||||
background : #f9fbff;
|
background : #f9fbff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body#ttrssZoom div.postHeader div.postDate {
|
||||||
|
float : none;
|
||||||
|
text-align : left;
|
||||||
|
padding-left : 0px;
|
||||||
|
color : #777;
|
||||||
|
font-size : 10px;
|
||||||
|
}
|
||||||
|
|
||||||
body#ttrssZoom div.postContent p {
|
body#ttrssZoom div.postContent p {
|
||||||
max-width : 650px;
|
max-width : 650px;
|
||||||
text-align : justify;
|
text-align : justify;
|
||||||
|
|||||||
@@ -3201,6 +3201,7 @@
|
|||||||
$parsed_updated = make_local_datetime($line["updated"], true,
|
$parsed_updated = make_local_datetime($line["updated"], true,
|
||||||
$owner_uid, true);
|
$owner_uid, true);
|
||||||
|
|
||||||
|
if (!$zoom_mode)
|
||||||
$rv['content'] .= "<div class=\"postDate\">$parsed_updated</div>";
|
$rv['content'] .= "<div class=\"postDate\">$parsed_updated</div>";
|
||||||
|
|
||||||
if ($line["link"]) {
|
if ($line["link"]) {
|
||||||
@@ -3214,6 +3215,9 @@
|
|||||||
$rv['content'] .= "<div class='postTitle'>" . $line["title"] . "$entry_author</div>";
|
$rv['content'] .= "<div class='postTitle'>" . $line["title"] . "$entry_author</div>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($zoom_mode)
|
||||||
|
$rv['content'] .= "<div class=\"postDate\">$parsed_updated</div>";
|
||||||
|
|
||||||
$tags_str = format_tags_string($line["tags"], $id);
|
$tags_str = format_tags_string($line["tags"], $id);
|
||||||
$tags_str_full = join(", ", $line["tags"]);
|
$tags_str_full = join(", ", $line["tags"]);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user