From: Andrew Dolgov Date: Wed, 7 Sep 2005 08:46:30 +0000 (+0100) Subject: enable comments link in op=view X-Git-Tag: 1.0.3~13 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=f7181e9b61a9e8db422c2c814358995b5a6a72e8;p=tt-rss.git enable comments link in op=view --- diff --git a/backend.php b/backend.php index a3460c4f..8ddb391a 100644 --- a/backend.php +++ b/backend.php @@ -230,14 +230,23 @@ $feed_icon = " "; } + if ($line["comments"] && $line["link"] != $line["comments"]) { + $entry_comments = "(Comments)"; + } else { + $entry_comments = ""; + } + print "
"; print "
"; print ""; + print " - "; + "; print "
Title: " . $line["title"] . "
Link:" . $line["link"] . "
+ ".$line["link"]." + $entry_comments
"; diff --git a/tt-rss.css b/tt-rss.css index f3113b1b..87c15951 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -101,6 +101,14 @@ div.postReply { padding : 10px; } +div.postReply a { + color : #5050aa; +} + +div.postReply a:hover { + color : black; +} + div.postReply div.postHeader { background : white; border : 1px solid #c0c0c0;