summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-12-20 17:14:09 +0100
committerAndrew Dolgov <[email protected]>2005-12-20 17:14:09 +0100
commit96737ce95078508296218bb0d3b49a1111ffa933 (patch)
tree1bca5b7e40dcf13674849861d964e5652ad2b6b5
parent2f52ca1b5ca53e047cf2ffda3839de62bd13e4fb (diff)
misc IE compatibility fixes
-rw-r--r--backend.php2
-rw-r--r--feedlist.js2
-rw-r--r--tt-rss-ie.css1
-rw-r--r--tt-rss.css4
-rw-r--r--tt-rss.php1
-rw-r--r--tt-rss_compact.css13
6 files changed, 18 insertions, 5 deletions
diff --git a/backend.php b/backend.php
index eefb31b10..81cddf867 100644
--- a/backend.php
+++ b/backend.php
@@ -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,
diff --git a/feedlist.js b/feedlist.js
index 2e1d5eb5f..048a24c80 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -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")) {
diff --git a/tt-rss-ie.css b/tt-rss-ie.css
index 44a0b4039..2ca760c95 100644
--- a/tt-rss-ie.css
+++ b/tt-rss-ie.css
@@ -3,4 +3,3 @@ ul.feedCatList {
top: -1em;
}
-
diff --git a/tt-rss.css b/tt-rss.css
index f56830a7f..70f119cf5 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -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;
diff --git a/tt-rss.php b/tt-rss.php
index a59b0ece8..bb9dbfdc0 100644
--- a/tt-rss.php
+++ b/tt-rss.php
@@ -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>
diff --git a/tt-rss_compact.css b/tt-rss_compact.css
index c99ccc877..9ab17dca0 100644
--- a/tt-rss_compact.css
+++ b/tt-rss_compact.css
@@ -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;
+}
+