fix feedlist display in IE7 (enable collapsed cats)
This commit is contained in:
parent
e95687b22a
commit
be5b75da89
|
@ -2961,7 +2961,7 @@
|
||||||
|
|
||||||
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
||||||
print "<li class=\"feedCat\">".__('Special')."</li>\n";
|
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);
|
$num_starred = getFeedUnread($link, -1);
|
||||||
|
@ -2987,7 +2987,7 @@
|
||||||
if (db_num_rows($result) > 0) {
|
if (db_num_rows($result) > 0) {
|
||||||
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
if (get_pref($link, 'ENABLE_FEED_CATS')) {
|
||||||
print "<li class=\"feedCat\">".__('Labels')."</li>\n";
|
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 {
|
} else {
|
||||||
print "<li><hr></li>\n";
|
print "<li><hr></li>\n";
|
||||||
}
|
}
|
||||||
|
@ -3149,7 +3149,7 @@
|
||||||
$holder_class = "invisible";
|
$holder_class = "invisible";
|
||||||
$ellipsis = "...";
|
$ellipsis = "...";
|
||||||
} else {
|
} else {
|
||||||
$holder_class = "";
|
$holder_class = "feedCatHolder";
|
||||||
$ellipsis = "";
|
$ellipsis = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1508,6 +1508,6 @@ a.helpLinkPic img {
|
||||||
display : none;
|
display : none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#feedCatHolder {
|
li.feedCatHolder {
|
||||||
display : inline;
|
display : inline;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue