diff --git a/include/functions.php b/include/functions.php index 73c2f6d50..3af4af350 100644 --- a/include/functions.php +++ b/include/functions.php @@ -3392,14 +3392,14 @@ $rv['content'] .= "
$parsed_updated
"; if ($line["link"]) { - $rv['content'] .= "
" . - truncate_string($line["title"], 100) . + $line["title"] . "$entry_author
"; } else { - $rv['content'] .= "
" . $line["title"] . "$entry_author
"; + $rv['content'] .= "
" . $line["title"] . "$entry_author
"; } $tag_cache = $line["tag_cache"]; diff --git a/tt-rss.css b/tt-rss.css index a8286ef9a..619a03f98 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -41,6 +41,15 @@ div.postReply div.postHeader { color : #909090; } +div.postReply div.postTitle { + overflow : hidden; + white-space : nowrap; +} + +div.postReply div.postDate { + padding-left : 10px; +} + div.postReply div.postContent { padding : 10px; font-size : 12px;