-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
7b183d7
commit 210e039
Showing
6 changed files
with
55 additions
and
23 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,51 @@ | ||
/****************************************************************************** | ||
******************************** 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. */ | ||
|
||
legend { | ||
#font-family: 'Droid Sans','Liberation Sans',Arial,Helvetica,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 */ | ||
} | ||
#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 */ | ||
} | ||
|
||
|
||
.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 */ | ||
} | ||
|
||
|
||
/* 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