misc IE compatibility fixes
This commit is contained in:
parent
2f52ca1b5c
commit
96737ce950
|
@ -518,7 +518,7 @@
|
|||
|
||||
// !!! NO SPACE before <ul...feedCatList - breaks firstChild DOM function
|
||||
// -> keyboard navigation, etc.
|
||||
print "<li id=\"feedCatHolder\" class=\"$holder_class\"><ul class=\"feedCatList\">";
|
||||
print "<li id=\"feedCatHolder\" class=\"$holder_class\"><ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\">";
|
||||
}
|
||||
|
||||
printFeedEntry($feed_id, $class, $feed, $unread,
|
||||
|
|
|
@ -164,7 +164,7 @@ function toggleCollapseCat(cat) {
|
|||
}
|
||||
|
||||
var cat_elem = document.getElementById("FCAT-" + cat);
|
||||
var cat_list = cat_elem.nextSibling;
|
||||
var cat_list = document.getElementById("FCATLIST-" + cat).parentNode;
|
||||
var caption = cat_elem.lastChild;
|
||||
|
||||
if (cat_list.className.match("invisible")) {
|
||||
|
|
|
@ -3,4 +3,3 @@ ul.feedCatList {
|
|||
top: -1em;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -150,7 +150,7 @@ ul.feedList li.feedCat {
|
|||
margin : 0px;
|
||||
padding : 3px 0px 3px 0px;
|
||||
color : #707070;
|
||||
font-size : small;
|
||||
font-size : x-small;
|
||||
}
|
||||
|
||||
ul.feedList li.feedCat a {
|
||||
|
@ -669,7 +669,7 @@ div.prefHelp, td.prefHelp {
|
|||
}
|
||||
|
||||
td.welcomePrompt {
|
||||
font-size : small;
|
||||
font-size : x-small;
|
||||
color : gray;
|
||||
text-align : right;
|
||||
padding-right : 10px;
|
||||
|
|
|
@ -43,6 +43,7 @@
|
|||
<script type="text/javascript" src="tt-rss.js"></script>
|
||||
<!--[if gte IE 5.5000]>
|
||||
<script type="text/javascript" src="pngfix.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="tt-rss-ie.css">
|
||||
<![endif]-->
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
</head>
|
||||
|
|
|
@ -44,3 +44,16 @@ ul.feedList li {
|
|||
table.main td.feeds {
|
||||
width : 250px;
|
||||
}
|
||||
|
||||
td.headlinesToolbarBox td {
|
||||
font-size : x-small;
|
||||
}
|
||||
|
||||
td.welcomePrompt {
|
||||
font-size : x-small;
|
||||
}
|
||||
|
||||
#notify_body, #notify {
|
||||
font-size : x-small;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue