nanawel / rsslounge

Automatically exported from code.google.com/p/rsslounge
0 stars 0 forks source link

Hide category when there is nothing to read #81

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Categories display is quiet big, if the categories with no items to read are 
hidden, it will be more readable.
Especially if you have a lot of them like me :)

Original issue reported on code.google.com by lip...@gmail.com on 7 Sep 2011 at 10:22

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
diff feedlist.phtml feedlist.phtml.bak 
9d8
< <?php if($cat['unread']>0) : ?>
21d19
< <?php endif;?>

and you can add : http://code.google.com/p/rsslounge/issues/detail?id=63 

Original comment by lip...@gmail.com on 7 Sep 2011 at 7:10

GoogleCodeExporter commented 9 years ago
better :

in style.css

 #feeds-list h3 {
    display:none;
    ....
 }

 #feeds-list h3.unread {
    display:block;
 }

Original comment by fabclem...@gmail.com on 28 Jun 2012 at 9:01