Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Updates to support DokuWiki rc2013-10-28 "Binky"
The introduced LESS support [1] stumbled upon several CSS hacks for older Internet Explorer versions. This commit puts these hacks in a separate file which gets loaded by a simple conditional comment instead of the style.ini. So only older MSIE clients but not DokuWiki itself gets faced with the hacks. [1] <splitbrain/dokuwiki#240>
- Loading branch information
Showing
with
82 additions
and 42 deletions.
- +1 −1 css/mnml-blog_print.css
- +0 −41 css/mnml-blog_screen.css
- +78 −0 css/mnml-blog_screen_iehacks.css
- +1 −0 detail.php
- +1 −0 main.php
- +1 −0 mediamanager.php
@@ -0,0 +1,78 @@ | ||
/****************************************************************************** | ||
******************************** ATTENTION ********************************* | ||
DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES! | ||
****************************************************************************** | ||
If you want to add some own screen CSS, have a look at the README of this | ||
template and "/user/screen.css". You have been warned! | ||
*****************************************************************************/ | ||
|
||
/* This file get loaded by a conditional comment. The style.ini is not used as | ||
DokuWiki's internal CSS handling stumbles upon most of these Internet | ||
Explorer specific browser hacks and corrections. */ | ||
|
||
* html .dokuwiki div#tmpl_sidebar { | ||
padding-top: 28px; /* fix MSIE 6 - if we can't kill the top margin of | ||
headlines, we move the sidebar. Better than nothing. */ | ||
} | ||
|
||
legend { | ||
#font-family: Arial,Helvetica,'Liberation Sans',sans-serif; /* fix MSIE 6/7 */ | ||
} | ||
|
||
* html pre, | ||
* html code { | ||
width: 100%; /* fix MSIE 6 */ | ||
} | ||
|
||
.dokuwiki table.inline { | ||
#border: 1px solid #606060; /* fix MSIE 6/7 */ | ||
} | ||
|
||
* html div#pagewrap { | ||
width: 890px; /* fix MSIE 6 */ | ||
} | ||
|
||
#tmpl_header #tmpl_header_nav ul li.level1 { | ||
background-color: #000; /* fix MSIE 6 */ | ||
} | ||
|
||
#tmpl_header #tmpl_header_nav #tmpl_header_nav_search { | ||
padding-top: 13px\9; /* Fix MSIE 6,7,8 */ | ||
} | ||
|
||
#tmpl_footer { | ||
#zoom: 1; /* fix MSIE 6/7 */ | ||
} | ||
|
||
* html .dokuwiki div.toc span.toc_open, | ||
* html .dokuwiki div.toc span.toc_close { | ||
border-color: #fff; /* fix MSIE 6 */ | ||
} | ||
|
||
* html div.insitu-footnote { | ||
width: 40%; /* fix MSIE6 */ | ||
} | ||
|
||
.dokuwiki input.button, | ||
.dokuwiki button.button { | ||
#line-height: 1em; /* fix MSIE 6, 7 */ | ||
} | ||
* html .dokuwiki input.button, | ||
* html .dokuwiki button.button { | ||
height: 28px; /* fix MSIE 6 */ | ||
} | ||
|
||
* html .dokuwiki textarea.edit { | ||
width: 100%; /* fix MSIE 6 */ | ||
} | ||
|
||
.dokuwiki #wiki__editbar .editButtons, | ||
.dokuwiki #wiki__editbar .summary { | ||
#display: block; /* Fix MSIE 6, 7 */ | ||
#margin-top: 25px; | ||
} | ||
|
||
/* bureaucracy plugin */ | ||
.dokuwiki form.bureaucracy__plugin fieldset { | ||
border-style: solid\9; /* fix MSIE 6/7/8 */ | ||
} |