Skip to content

Commit

Permalink
synced against default template
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Klier committed Oct 29, 2010
1 parent c3061e3 commit 096159f
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 6 deletions.
5 changes: 5 additions & 0 deletions _admin.css
@@ -1,3 +1,8 @@
#admin__version {
clear:left;
float: right;
color: __text_neu__;
}

.dokuwiki ul.admin_tasks {
font-size: 115%;
Expand Down
12 changes: 9 additions & 3 deletions design.css
Expand Up @@ -91,7 +91,10 @@ div.dokuwiki textarea.edit {
background-color: __background__;
border: 1px solid __border__;
padding: 0.3em 0 0 0.3em;
width: 100%;
/* should just be "width: 100%", but IE8 doesn't like it, see FS#1910 + FS#1667 */
width: 700px;
min-width: 100%;
max-width: 100%;
}

/* nice alphatransparency background except for IE <7 */
Expand Down Expand Up @@ -462,6 +465,7 @@ div.dokuwiki blockquote {
}

div.dokuwiki pre {
font-family: monospace;
font-size: 120%;
padding: 0.5em;
border: 1px dashed __border__;
Expand Down Expand Up @@ -688,6 +692,7 @@ div.insitu-footnote {
text-align: left;
padding: 4px;
max-width: 40%; /* IE's width is handled in javascript */
min-width: 5em;
}

/* overcome IE issue with one line code or file boxes which require h. scrolling */
Expand Down Expand Up @@ -741,8 +746,8 @@ div.dokuwiki ul.search_quickhits li {
width: 30%;
}

div.dokuwiki div.section_highlight {
background-color: __background_alt__;
div.dokuwiki .section_highlight {
background-color: __background_alt__ !important;
}

/* ------------------ Additional ---------------------- */
Expand Down Expand Up @@ -833,3 +838,4 @@ div.dokuwiki div.imagemeta img.thumb {
float: left;
margin-right: 0.1em;
}

2 changes: 1 addition & 1 deletion media.css
@@ -1,5 +1,5 @@
/**
* The CSS in here cotrols the appearance of the media manager
* The CSS in here controls the appearance of the media manager
*/

#media__manager {
Expand Down
8 changes: 8 additions & 0 deletions print.css
Expand Up @@ -21,6 +21,10 @@ a {
background: none !important;
}

a.interwiki {
padding-left: 0px !important;
}


div.meta {
clear: both;
Expand Down Expand Up @@ -143,6 +147,10 @@ span.li {
font-weight: normal;
}

pre {
font-family: monospace;
}

/* code blocks by indention */
pre.pre {
font-size: 8pt;
Expand Down
32 changes: 30 additions & 2 deletions rtl.css
@@ -1,5 +1,5 @@
/**
* Layout and dedsign corrections for right-to-left languages
* Layout and design corrections for right-to-left languages
*
* @author Andreas Gohr <andi@splitbrain.org>
* @author Dotan Kamber <kamberd@yahoo.com>
Expand Down Expand Up @@ -45,6 +45,10 @@ div.meta div.doc {

div.dokuwiki ul,
div.dokuwiki ol {
margin: 0.5em 3.5em 0.5em 0;
}
div.dokuwiki li ul,
div.dokuwiki li ol {
margin: 0.5em 1.5em 0.5em 0;
}

Expand Down Expand Up @@ -113,7 +117,31 @@ div.dokuwiki ul.toc li.clear {
padding-right: 0.4em;
}

div.dokuwiki pre {
div.dokuwiki .code {
direction: ltr;
text-align: left;
}
div.dokuwiki blockquote {
border-left: 0;
padding-left: 0;
border-right: 2px solid __border__;
padding-right: 3px;
}

/* Admin corrections */
#admin__version {
clear: right;
float: left;
}

.dokuwiki ul.admin_tasks {
float: right;
}

.dokuwiki ul.admin_tasks li {
padding-left: 0px;
padding-right: 35px;
background: transparent none no-repeat scroll right 0;
text-align: right;
}

0 comments on commit 096159f

Please sign in to comment.