summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcss/design.css8
-rwxr-xr-xmain.php4
2 files changed, 2 insertions, 10 deletions
diff --git a/css/design.css b/css/design.css
index c3f235674..75100dc75 100755
--- a/css/design.css
+++ b/css/design.css
@@ -100,9 +100,6 @@
padding: 0;
max-width: __site_width__;
}
-#IE6 #dokuwiki__usertools ul {
- width: 100%;
-}
#dokuwiki__usertools ul li.user {
}
@@ -475,8 +472,6 @@
font-size: 100%;
}
-#IE6 .dokuwiki input.button,
-#IE6 .dokuwiki button,
#IE7 .dokuwiki input.button,
#IE7 .dokuwiki button {
line-height: 1.4;
@@ -547,9 +542,6 @@ div.picker button.toolbutton {
.dokuwiki .wrapper {
margin-bottom: 1.4em;
}
-#IE6 .dokuwiki .wrapper {
- margin-bottom: .7em;
-}
#dokuwiki__footer {
margin-bottom: 1em;
diff --git a/main.php b/main.php
index 56d7ac90f..825fd3cf6 100755
--- a/main.php
+++ b/main.php
@@ -28,8 +28,8 @@ $showSidebar = tpl_getConf('sidebarID') && page_exists(tpl_getConf('sidebarID'))
<body>
<?php /* with these Conditional Comments you can better address IE issues in CSS files,
- precede CSS rules by #IE6 for IE6, #IE7 for IE7 and #IE8 for IE8 (div closes at the bottom) */ ?>
- <!--[if IE 6 ]><div id="IE6"><![endif]--><!--[if IE 7 ]><div id="IE7"><![endif]--><!--[if IE 8 ]><div id="IE8"><![endif]-->
+ precede CSS rules by #IE7 for IE7 and #IE8 for IE8 (div closes at the bottom) */ ?>
+ <!--[if lte IE 7 ]><div id="IE7"><![endif]--><!--[if IE 8 ]><div id="IE8"><![endif]-->
<?php /* the "dokuwiki__top" id is needed somewhere at the top, because that's where the "back to top" button/link links to */ ?>
<?php /* classes mode_<action> are added to make it possible to e.g. style a page differently if it's in edit mode,