mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 17:45:55 +00:00
slightly better article note display in CDM
This commit is contained in:
4
cdm.css
4
cdm.css
@@ -96,3 +96,7 @@ div.cdmFeedTitle {
|
||||
background-repeat : repeat-x;
|
||||
}
|
||||
|
||||
div.articleNote {
|
||||
border-style : dashed none dashed none;
|
||||
}
|
||||
|
||||
|
||||
@@ -581,6 +581,13 @@ class Feeds extends Handler_Protected {
|
||||
onclick=\"return cdmClicked(event, $id);\"
|
||||
id=\"CICD-$id\">";
|
||||
|
||||
$reply['content'] .= "<div id=\"POSTNOTE-$id\">";
|
||||
if ($line['note']) {
|
||||
$reply['content'] .= format_article_note($id, $line['note']);
|
||||
}
|
||||
$reply['content'] .= "</div>";
|
||||
|
||||
|
||||
$reply['content'] .= "<div class=\"cdmContentInner\">";
|
||||
|
||||
if ($line["orig_feed_id"]) {
|
||||
@@ -616,12 +623,6 @@ class Feeds extends Handler_Protected {
|
||||
$line["content_preview"] =& $line["cached_content"];
|
||||
}
|
||||
|
||||
$reply['content'] .= "<div id=\"POSTNOTE-$id\">";
|
||||
if ($line['note']) {
|
||||
$reply['content'] .= format_article_note($id, $line['note']);
|
||||
}
|
||||
$reply['content'] .= "</div>";
|
||||
|
||||
$reply['content'] .= "<span id=\"CWRAP-$id\">";
|
||||
$reply['content'] .= $line["content"];
|
||||
$reply['content'] .= "</span>";
|
||||
|
||||
Reference in New Issue
Block a user