From 225ec0d4c26762d32b1d5684cd2429ae356fe177 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 10 Aug 2007 10:52:24 +0100 Subject: add dropout effect when hiding read feeds --- functions.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'functions.php') diff --git a/functions.php b/functions.php index 51c2dd17e..8e003e5a9 100644 --- a/functions.php +++ b/functions.php @@ -3420,10 +3420,12 @@ } if ($collapsed == "t" || $collapsed == "1") { - $holder_class = "invisible"; + $holder_class = "feedCatHolder"; + $holder_style = "display:none;"; $ellipsis = "..."; } else { $holder_class = "feedCatHolder"; + $holder_style = ""; $ellipsis = ""; } @@ -3442,7 +3444,7 @@ // !!! NO SPACE before keyboard navigation, etc. - print "
    • "; + print "
      • "; } printFeedEntry($feed_id, $class, $feed, $unread, -- cgit v1.2.3