Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
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] <dokuwiki/dokuwiki#240>
- Loading branch information
1 parent
f2455b8
commit 9b1b82a
Showing
6 changed files
with
82 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters