]> git.wh0rd.org Git - tt-rss.git/commitdiff
fix feedlist display in IE7 (enable collapsed cats)
authorAndrew Dolgov <fox@bah.spb.su>
Sun, 29 Apr 2007 06:11:13 +0000 (07:11 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Sun, 29 Apr 2007 06:11:13 +0000 (07:11 +0100)
functions.php
tt-rss.css

index c555f7fb5548f242534822d8619c35c8005e7705..2a2bf2e8e1e30de3cf05575fb539d82d6c54723c 100644 (file)
 
                if (get_pref($link, 'ENABLE_FEED_CATS')) {
                        print "<li class=\"feedCat\">".__('Special')."</li>\n";
-                       print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">\n";
+                       print "<li id=\"feedCatHolder\" class=\"feedCatHolder\"><ul class=\"feedCatList\">\n";
                }
 
                $num_starred = getFeedUnread($link, -1);
                                if (db_num_rows($result) > 0) {
                                        if (get_pref($link, 'ENABLE_FEED_CATS')) {
                                                print "<li class=\"feedCat\">".__('Labels')."</li>\n";
-                                               print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">\n";
+                                               print "<li id=\"feedCatHolder\" class=\"feedCatHolder\"><ul class=\"feedCatList\">\n";
                                        } else {
                                                print "<li><hr></li>\n";
                                        }
                                                $holder_class = "invisible";
                                                $ellipsis = "...";
                                        } else {
-                                               $holder_class = "";
+                                               $holder_class = "feedCatHolder";
                                                $ellipsis = "";
                                        }
 
index 397fbeb592327679f411e34c8d83210163703b60..d9de1cac55d292054e2f37b96a231c145063486f 100644 (file)
@@ -1508,6 +1508,6 @@ a.helpLinkPic img {
        display : none;
 }
 
-#feedCatHolder {
+li.feedCatHolder {
        display : inline;
 }