From 7d5e8b3dc3302e2a0e2347dd48d8e38c1091ea2d Mon Sep 17 00:00:00 2001 From: rich Date: Sat, 16 Oct 2004 12:12:46 +0000 Subject: [PATCH] Fixed CSS in the navigation menu in IE. This uses the "* html selector" bug in IE to ensure the rule only gets applied to IE 5/6. Bumped version for release. --- debian/changelog | 2 +- html/_css/standard.css | 13 ++++++++++--- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index 023adca..c427973 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -cocanwiki (1.2.2-5) unstable; urgency=low +cocanwiki (1.2.2-6) unstable; urgency=low * Initial Release. diff --git a/html/_css/standard.css b/html/_css/standard.css index f672529..dad0159 100644 --- a/html/_css/standard.css +++ b/html/_css/standard.css @@ -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; -- 1.8.3.1