Fixed CSS in the navigation menu in IE. This uses the "* html selector"
authorrich <rich>
Sat, 16 Oct 2004 12:12:46 +0000 (12:12 +0000)
committerrich <rich>
Sat, 16 Oct 2004 12:12:46 +0000 (12:12 +0000)
bug in IE to ensure the rule only gets applied to IE 5/6.

Bumped version for release.

debian/changelog
html/_css/standard.css

index 023adca..c427973 100644 (file)
@@ -1,4 +1,4 @@
-cocanwiki (1.2.2-5) unstable; urgency=low
+cocanwiki (1.2.2-6) unstable; urgency=low
 
   * Initial Release.
 
index f672529..dad0159 100644 (file)
@@ -1,5 +1,5 @@
 /* Stylesheet for COCANWIKI.
- * $Id: standard.css,v 1.14 2004/10/10 16:48:25 rich Exp $
+ * $Id: standard.css,v 1.15 2004/10/16 12:12:47 rich Exp $
  */
 
 body {
@@ -288,7 +288,7 @@ div#form_div p.edit_link {
 div#navigation_space_div {
   float: right;
   width: 10em;
-  height: 20em;
+  height: 22em;
   border: 1px solid #ccc;
   background: #fff;
   margin-left: 1em;
@@ -299,7 +299,7 @@ div#navigation_div {
   right: 1em;
   top: 6em;
   width: 10em;
-  height: 20em;
+  height: 22em;
 }
 
 div#navigation_div h2 {
@@ -325,6 +325,13 @@ div#navigation_div ul {
   margin-left: -1em;
 }
 
+/* The "* html" causes this rule to only be applied to IE 5/6. */
+* html div#navigation_div li {
+  line-height: 1.2em;
+  margin-left: 3em;
+  padding-left: 0px;
+}
+
 /* Calendar extension. */
 table.cal_month {
   border-collapse: collapse;