From d7e83df791eed94026758e1b4e49a93eb8e44062 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 8 Aug 2008 05:33:23 +0100 Subject: [PATCH] headlins: feed icon tweaks --- functions.js | 4 ++-- functions.php | 8 ++++---- tt-rss.css | 5 +++-- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/functions.js b/functions.js index 574f1e6b0..351f4dcc3 100644 --- a/functions.js +++ b/functions.js @@ -532,7 +532,7 @@ function parse_counters(reply, scheduled_call) { } if (ctr > 0) { - feedctr.className = "catCtrHasUnread"; + feedctr.className = "feedCtrHasUnread"; if (!feedr.className.match("Unread")) { var is_selected = feedr.className.match("Selected"); @@ -552,7 +552,7 @@ function parse_counters(reply, scheduled_call) { queue: { position:'end', scope: 'EFQ-' + id, limit: 1 } } ); } } else { - feedctr.className = "catCtrNoUnread"; + feedctr.className = "feedCtrNoUnread"; feedr.className = feedr.className.replace("Unread", ""); } } diff --git a/functions.php b/functions.php index b6212cd15..31b7f758f 100644 --- a/functions.php +++ b/functions.php @@ -1563,9 +1563,9 @@ print "$feed"; if ($unread != 0) { - $fctr_class = ""; + $fctr_class = "class=\"feedCtrHasUnread\""; } else { - $fctr_class = "class=\"invisible\""; + $fctr_class = "class=\"feedCtrNoUnread\""; } print " @@ -5068,12 +5068,12 @@ # } - print "$updated_fmt "; + print "$updated_fmt "; print "$score_pic"; if ($line["feed_title"] && !get_pref($link, 'VFEED_GROUP_BY_FEED')) { - print "$feed_icon_img"; + print "$feed_icon_img"; } print ""; diff --git a/tt-rss.css b/tt-rss.css index ae8240e88..d461ee227 100644 --- a/tt-rss.css +++ b/tt-rss.css @@ -875,6 +875,7 @@ table.headlinesList { table.headlinesList td.hlFeedIcon { width : 25px; text-align : center; + cursor : pointer; } @@ -1699,12 +1700,12 @@ a.feedUpdErrLink { margin-bottom : 0.5em; } -.catCtrHasUnread { +.catCtrHasUnread, .feedCtrHasUnread { font-weight : bold; color : #707070; } -.catCtrNoUnread { +.catCtrNoUnread, .feedCtrNoUnread { display : none; }