summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-04-29 07:11:13 +0100
committerAndrew Dolgov <[email protected]>2007-04-29 07:11:13 +0100
commitbe5b75da89697c8f5f35e652165fb5348a8927b4 (patch)
tree2d74510dd12f739ad0ac55ef238064d1244d271d
parente95687b22a562dd6e60037f225666191b5de2d87 (diff)
fix feedlist display in IE7 (enable collapsed cats)
-rw-r--r--functions.php6
-rw-r--r--tt-rss.css2
2 files changed, 4 insertions, 4 deletions
diff --git a/functions.php b/functions.php
index c555f7fb5..2a2bf2e8e 100644
--- a/functions.php
+++ b/functions.php
@@ -2961,7 +2961,7 @@
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);
@@ -2987,7 +2987,7 @@
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";
}
@@ -3149,7 +3149,7 @@
$holder_class = "invisible";
$ellipsis = "...";
} else {
- $holder_class = "";
+ $holder_class = "feedCatHolder";
$ellipsis = "";
}
diff --git a/tt-rss.css b/tt-rss.css
index 397fbeb59..d9de1cac5 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -1508,6 +1508,6 @@ a.helpLinkPic img {
display : none;
}
-#feedCatHolder {
+li.feedCatHolder {
display : inline;
}