===== Layout Anpassungen =====
==== lib\tpl\arctic\style.ini ====
Breite, Höhe und Farben angepasst.
[replacements]
__wiki_width__ = "95%"
__header_height__ = "3.5em"
__header_background__ = "#cccccc"
__footer_background__ = "#cccccc"
==== lib\tpl\arctic\arctic_design.css ====
Dieser ominöse zweite Rahmen um die Sidebar wurde entfernt (border: none;)
div.dokuwiki div.left_sidebar {
float: left;
width: 22%;
padding: 0.2em 0.5em 0 0;
border: none;
}
Und die Footer-Höhe wurde fixiert (height: 1em;) da die Buttons im Footer wegfallen.
div.footerinc {
border: 1px solid __border__;
background-color: __footer_background__;
margin-top: 0.5em;
height: 1em;
}
Ein BrowserHack im Body (overflow: -moz-scrollbars-vertical;), um im Mozilla IMMER eine Vertikale Scrollbar zu haben, damit das Layout nicht springt aufgrund der zentrierten Ausrichtung.
body {
font: __font_size__ Verdana, "Lucida Grande", Lucida, Helvetica, Arial, sans-serif;
color: __text__;
margin: __body_margin__;
line-height: __line_height__;
background: __body_background__;
overflow: -moz-scrollbars-vertical;
}
Ausserdem habe ich noch die Breite des Inhaltverzeichnisses um 5 em erhöht (width: 25em;), da ansonsten meine H3 subtitles mit den Files über den Rand liefen..
div.dokuwiki div.toc {
margin-top: 1.3em;
width: 25em;
}
==== lib\tpl\arctic\arctic_layout.css ====
Das Logo layout angepasst
div.dokuwiki .logo {
float: right;
font-size: 220%;
font-weight: bolder;
text-align: right;
vertical-align: middle;
padding: 0 0 0 0;
}
div.dokuwiki .logo a {
color: __logo_color__ !important;
text-decoration: none !important;
font-variant: small-caps;
letter-spacing: 2pt;
}
==== lib\tpl\arctic\footer.html ====
Die Footer-Buttons gefielen mir überhaupt nicht .... Also weg damit!