From f7181e9b61a9e8db422c2c814358995b5a6a72e8 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 7 Sep 2005 09:46:30 +0100 Subject: enable comments link in op=view --- backend.php | 11 ++++++++++- tt-rss.css | 8 ++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/backend.php b/backend.php index a3460c4fc..8ddb391a5 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 f3113b1bf..87c15951a 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; -- cgit v1.2.3