diff --git a/backend.php b/backend.php index 554026963..6129a17c6 100644 --- a/backend.php +++ b/backend.php @@ -1065,13 +1065,20 @@ print " ".$line["feed_title"].""; } else { - print "$content_link"; + print ""; + + print "" . + $line["title"]; + if (get_pref($link, 'SHOW_CONTENT_PREVIEW')) { + $content_preview = truncate_string(strip_tags($line["content_preview"]), 101); - + print " - $content_preview"; } + + print ""; print ""; } diff --git a/tt-rss.css b/tt-rss.css index b37183796..1788515a4 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -706,6 +706,10 @@ span.contentPreview { font-weight : normal; } +span.contentPreview:hover { + color : #5050aa; +} + td.hlMarkedPic { width : 25px; text-align : center;