1/******************************************************************************
2 ********************************  ATTENTION  *********************************
3         DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
4 ******************************************************************************
5  If you want to add some own screen CSS, have a look at the README of this
6  template and "/user/screen.css". You have been warned!
7 *****************************************************************************/
8
9/*
10   This template includes CSS from the "starter" DokuWiki template by
11   Anika Henke (brings important and basic styling for syntax and core
12   features). These files will be included BEFORE this specific CSS file. In
13   this file, I just overwrite non fitting DokuWiki "starter" CSS + add some
14   CSS for some exclusive objects of this template.
15
16   Why I am doing this? Well, read <http://j.mp/eq8zSo>.
17*/
18
19
20
21/******************************************************************************
22 ******** Most basic styles                                        ************
23 ******** Originally based on starter template's basic.css         ************
24 ******** Have a look at http://j.mp/eq8zSo for more information   ************
25 ******************************************************************************/
26html,
27body {
28    padding: 0;
29    color: __text__;
30}
31html {
32    margin: 0;
33    overflow-x: auto;
34    overflow-y: scroll;
35    background-color: transparent;
36}
37body {
38    margin: 0 auto;
39    background: #e4e4e4 url(images/background.png) repeat-x 0 0;
40    font: normal 100%/1.4em Verdana,'Liberation Sans',Arial,Helvetica,sans-serif;
41    /* same font stack should be used for ".dokuwiki div.toc" */
42}
43h1, h1 a,
44h2, h2 a,
45h3, h3 a,
46h4, h4 a,
47h5, h5 a,
48h6, h6 a {
49    font-family: 'Droid Sans','Liberation Sans',Arial,Helvetica,sans-serif;
50    /* same font stack should be used for ".dokuwiki div.tocheader" */
51    font-weight: normal;
52    color: __text__;
53    background-color: inherit;
54    line-height: 1.4em !important;
55    text-align: left;
56    border: none;
57    padding: 0;
58    clear: left; /* ideally 'both', but problems with toc */
59}
60h1,
61h2,
62h3,
63h4,
64h5,
65h6 {
66    padding: 0.5em 0 0;
67    margin: 0.3em auto 0.1em 0 !important;
68}
69h1 {
70    font-size: 2.286em; /* 32px, base 14px (see ".dokuwiki") */
71    line-height: 2.857em; /* 40px, base 14px (see ".dokuwiki") */
72}
73h2 {
74    font-size: 1.714em; /* 24px, base 14px (see ".dokuwiki") */
75}
76h3 {
77    font-size: 1.286em; /* 18px, base 14px (see ".dokuwiki") */
78}
79h4 {
80    font-size: 1.143em; /* 16px, base 14px (see ".dokuwiki") */
81}
82h5,
83h6 {
84    font-size: 1em; /* 14px, base 14px (see ".dokuwiki") */
85}
86.dokuwiki div.page h1:first-child, /* remove top margin from headlines when there is no text above */
87.dokuwiki div.page h2:first-child,
88.dokuwiki div.page h3:first-child {
89    margin-top: 0 !important;
90}
91caption,
92legend {
93    background-color: inherit;
94    padding: 0;
95    line-height: 1.2em;
96    font-family: inherit;
97    font-weight: normal;
98    color: __text__;
99    clear: none;
100}
101legend {
102    text-align: left; /* needed for webkit browsers */
103}
104
105/* basic margins and paddings */
106p,
107ul,
108ol,
109dl,
110pre,
111table,
112hr,
113blockquote,
114fieldset,
115address {
116    margin: 0 0 1.4em 0;
117    padding: 0;
118}
119div {
120    margin: 0;
121    padding: 0;
122}
123
124/* lists */
125ul,
126ol {
127    padding: 0 0 0 1.5em;
128}
129li,
130dd {
131    padding: 0;
132    margin: 0 0 0 1.5em;
133}
134dt {
135    font-weight: bold;
136    margin: 0;
137    padding: 0;
138}
139li ul,
140li ol,
141li dl,
142dl ul,
143dl ol,
144dl dl {
145    margin-bottom: 0;
146    padding: 0;
147}
148li li {
149    font-size: 100%;
150}
151ul             { list-style: disc outside; }
152ol             { list-style: decimal outside; }
153ol ol          { list-style-type: lower-alpha; }
154ol ol ol       { list-style-type: upper-roman; }
155ol ol ol ol    { list-style-type: upper-alpha; }
156ol ol ol ol ol { list-style-type: lower-roman; }
157
158/* tables */
159table {
160    border-collapse: collapse;
161    empty-cells: show;
162    border-spacing: 0;
163    border: 1px solid __border__;
164}
165caption {
166    caption-side: top;
167    text-align: left;
168    margin: 0 0 .3em;
169}
170th,
171td {
172    padding: .3em .5em;
173    margin: 0;
174    vertical-align: top;
175    border: 1px solid __border__;
176    text-align: left;
177}
178th {
179    font-weight: bold;
180    background-color: __background_alt__;
181}
182
183/* links */
184a:link,
185a:link:active,
186a:visited,
187a:visited:active {
188    text-decoration: none;
189    color: __existing__;
190}
191a:link:hover,
192a:link:focus,
193a:link:active,
194a:visited:hover,
195a:visited:focus,
196a:visited:active {
197    text-decoration: none;
198    border-bottom: none;
199}
200a:link:focus,
201a:visited:focus {
202    outline: 1px dotted;
203}
204
205/* misc */
206img {
207    border-width: 0;
208    vertical-align: middle;
209    color: #666;
210    background-color: transparent;
211    font-style: italic;
212}
213hr {
214    border-style: solid;
215    border-width: 1px 0 0;
216    text-align: center;
217    height: 0;
218    width: 100%;
219    clear: both;
220}
221acronym,
222abbr {
223    cursor: help;
224    border-bottom: 1px dotted;
225    font-style: normal;
226}
227em acronym,
228em abbr,
229i acronym,
230i abbr {
231    font-style: italic;
232}
233pre,
234code,
235samp,
236kbd {
237    font-family: Consolas,monospace;
238    /* same font stack should be used for ".dokuwiki table.diff td" and
239       ".dokuwiki textarea.edit" */
240    font-size: 1em;
241    direction: ltr;
242    text-align: left;
243}
244pre {
245    overflow: auto;
246}
247pre,
248code {
249    background-color: transparent !important;
250}
251blockquote {
252    padding: 0 0.75em;
253    border: solid #606060;
254    border-width: 0 0 0 .25em;
255}
256q:before,
257q:after {
258    content: '';
259}
260sub,
261sup {
262    font-size: .8em;
263    line-height: 1;
264}
265sub {
266    vertical-align: sub;
267}
268sup {
269    vertical-align: super;
270}
271
272/* forms */
273form {
274    display: inline;
275    margin: 0;
276    padding: 0;
277}
278fieldset {
279    padding: 1em 1em 0;
280    border: 1px solid __text_alt__;
281}
282legend {
283    margin: 0;
284    padding: 0 .1em;
285}
286label {
287    vertical-align: middle;
288    cursor: pointer;
289}
290input,
291textarea,
292button,
293select,
294optgroup,
295option {
296    font: inherit;
297    color: inherit;
298    /* background-color destroys button look */
299    line-height: 1;
300    margin: 0;
301    vertical-align: middle;
302}
303input[type=text],
304input[type=password],
305textarea {
306    padding: .1em;
307}
308input[type=radio],
309input[type=checkbox],
310input.check {
311    padding: 0;
312}
313input[type=submit],
314input.button,
315button {
316    cursor: pointer;
317}
318input[disabled],
319button[disabled],
320input[readonly],
321button[readonly] {
322    cursor: auto;
323}
324optgroup {
325    font-style: italic;
326    font-weight: bold;
327}
328option {
329    font-style: normal;
330    font-weight: normal;
331}
332
333/* general classes */
334div.clearer {
335    /* additional to what's already in DokuWiki's lib/styles/all.css: */
336    font-size: 1px;
337    visibility: hidden;
338}
339.a11y {
340    position: absolute;
341    left: -9000px;
342    top: -4000px;
343    width: 0;
344    height: 0;
345    overflow: hidden;
346    display: inline;
347}
348
349
350
351/******************************************************************************
352 ******** Main design styles for the page content                  ************
353 ******** Originally based on starter template's content.css       ************
354 ******** Have a look at http://j.mp/eq8zSo for more information   ************
355 ******************************************************************************/
356.dokuwiki {
357    font-size: 0.875em !important; /* 14px (base: 16px from browser) */
358    line-height: 1.8em !important;
359}
360.dokuwiki p,
361.dokuwiki ul,
362.dokuwiki ol,
363.dokuwiki dl,
364.dokuwiki pre,
365.dokuwiki table,
366.dokuwiki hr,
367.dokuwiki blockquote,
368.dokuwiki fieldset,
369.dokuwiki address {
370    margin: 0 0 1em; /* =14px (base 25px = 1.8em line-height) */
371}
372.dokuwiki ul ul,
373.dokuwiki ul ol,
374.dokuwiki ol ul,
375.dokuwiki ol ol {
376    margin-bottom: 0;
377}
378
379/* code */
380.dokuwiki pre,
381.dokuwiki tt,
382.dokuwiki code,
383.dokuwiki samp,
384.dokuwiki kbd {
385    background-color: __background_alt__;
386    color: __text__;
387}
388.dokuwiki em.u code { /* fix if background-color hides underlining */
389    text-decoration: underline;
390}
391.dokuwiki pre {
392    padding: 0.5em;
393    border: 1px dashed __border__;
394    line-height: 1.3em;
395}
396.dokuwiki pre.file,
397.dokuwiki pre.code {
398    line-height: 1.3em;
399    font-size: 0.929em; /* =13px (base 14px) */
400    background-color: __background_alt__ !important;
401}
402.dokuwiki dl.file dt,
403.dokuwiki dl.code dt {
404    background-color: __background_alt__;
405    border: solid __border__;
406    border-width: 1px 1px 0;
407    color: inherit;
408    display: inline;
409    padding: 1px .5em;
410    margin-left: 1em;
411    line-height: 1.1em;
412    font-size: 0.929em; /* =13px (base 14px) */
413    font-weight: normal;
414    font-family: Consolas,monospace;
415}
416.dokuwiki dl.code dt a,
417.dokuwiki dl.file dt a {
418    color: __text__;
419    border-bottom: 0;
420    padding-left: 18px;
421}
422.dokuwiki dl.code dt a:hover,
423.dokuwiki dl.code dt a:active,
424.dokuwiki dl.file dt a:hover,
425.dokuwiki dl.file dt a:active {
426    text-decoration: underline;
427}
428.dokuwiki dl.code dd,
429.dokuwiki dl.file dd {
430    margin: 0;
431}
432
433/* tables */
434th,
435td {
436    border: 0;
437}
438td[align="right"],
439th[align="right"] {
440    text-align: right;
441}
442.dokuwiki table.inline th,
443.dokuwiki table.inline tr {
444    border: 1px solid #606060;
445}
446.dokuwiki table.inline td {
447    border: 1px solid __text_alt__;
448}
449.dokuwiki table.inline th {
450    color: inherit;
451    background-color: __background_neu__;
452}
453.dokuwiki table.inline tr {
454    background-color: __background_alt__;
455}
456.dokuwiki table.inline tr:hover th,
457.dokuwiki table.inline th:hover {
458    background-color: __background__;
459}
460.dokuwiki table.inline tr:hover td {
461    background-color: __background_neu__;
462}
463
464/* embedded images (styles are already partly set in DokuWiki's lib/styles/all.css) */
465.dokuwiki img.medialeft {
466    margin: .5em 1.5em .5em 0;
467}
468.dokuwiki img.mediaright {
469    margin: .5em 0 .5em 1.5em;
470}
471.dokuwiki img.mediacenter {
472    margin: .5em auto;
473}
474
475/* messages with msg() / message are */
476div.error,
477div.info,
478div.success,
479div.notify {
480    background-position: .5em 4px;
481}
482
483
484
485/******************************************************************************
486 **************** Styles for the template itself, structure *******************
487 ******************************************************************************/
488div#pagewrap {
489    margin: 15px auto;
490    background-color: transparent;
491    padding: 0 30px;
492    width: 890px; /* =width of 950px cause of 2*30px padding */
493}
494
495#tmpl_header {
496    width: 100%;
497    height: 80px;
498    padding: 0;
499    margin: 0 0 2.5em 0;
500    border-bottom: 1px solid #606060;
501}
502#tmpl_header #tmpl_header_left {
503    position: relative;
504    float: left;
505    width: 60%;
506    height: 100%;
507}
508#tmpl_header #tmpl_header_right {
509    position: relative;
510    float: right;
511    width: 39%; /* let 1% space for browser rounding errors */
512    height: 100%;
513    line-height: 22px; /* px instead of em to get a cross-browser reliable baseline with the txt logo */
514}
515#tmpl_header #tmpl_header_logo {
516    position: absolute;
517    bottom: 0;
518    padding: 0;
519    margin: 0;
520}
521#tmpl_header p {
522    margin-bottom: 0;
523}
524
525.dokuwiki div#content {
526    width: 100%;
527    min-height: 870px;
528    padding: 0;
529}
530.dokuwiki .page {
531    padding: 0 0 2em 0;
532    margin: 0;
533}
534
535/* header: dynamic text logo */
536#tmpl_header #tmpl_header_logo a.tmpl_header_logo_txt,
537#tmpl_header #tmpl_header_logo a.tmpl_header_logo_txt:visited,
538#tmpl_header #tmpl_header_logo a.tmpl_header_logo_txt:hover,
539#tmpl_header #tmpl_header_logo a.tmpl_header_logo_txt:active {
540    font-family: 'Droid Sans','Liberation Sans',Arial,Helvetica,sans-serif;
541    font-size: 48px;   /* px instead of em to get a cross-browser reliable... */
542    line-height: 59px; /* ...baseline with the header nav within tmpl_header_right */
543    vertical-align: top;
544    font-weight: bold;
545    text-decoration: none;
546    color: __text__;
547    text-transform: uppercase;
548    margin: 0;
549    padding: 0;
550    outline: 0;
551}
552/* header: image base logo (-> prsnl10/user/logo.[png|gif|jpeg]) */
553#tmpl_header #tmpl_header_logo #tmpl_header_logo_img,
554#tmpl_header #tmpl_header_logo a,
555#tmpl_header #tmpl_header_logo a:link,
556#tmpl_header #tmpl_header_logo a:visited,
557#tmpl_header #tmpl_header_logo a:hover,
558#tmpl_header #tmpl_header_logo a:active {
559    text-decoration: none;
560    border: 0 none;
561    margin: 0;
562    padding: 0;
563    outline: 0 none;
564}
565/* header: optional navigation */
566#tmpl_header #tmpl_header_nav {
567    position: absolute;
568    bottom: 0;
569    font-family: 'Droid Sans','Liberation Sans',Arial,Helvetica,sans-serif;
570    font-size: 112.5%; /* 18px (base: 16px) */
571    margin-bottom: 8px;
572    width: 100%;
573    text-align: right;
574}
575#tmpl_header #tmpl_header_nav a,
576#tmpl_header #tmpl_header_nav a:visited {
577    color: __text__;
578    text-transform: uppercase;
579    text-decoration: none;
580    border: 0 none;
581    outline: 0 none;
582}
583#tmpl_header #tmpl_header_nav a:hover {
584    color: __text__;
585    text-transform: uppercase;
586    text-decoration: underline;
587    border: 0 none;
588    outline: 0 none;
589}
590
591#tmpl_footer {
592    border-top: 1px solid #606060;
593    margin: 1em 0;
594    padding: 0.2em 0;
595    font-size: 0.714em; /* 10px (base: 14px) */
596    color: __text_neu__;
597    text-align: center;
598}
599#tmpl_footer a,
600#tmpl_footer a:link,
601#tmpl_footer a:visited {
602    color: __text_neu__;
603    border-bottom: none !important;
604}
605#tmpl_footer a:hover {
606   color: __existing__;
607}
608#tmpl_footer #tmpl_footer_actlinksleft {
609    float: left;
610    margin-right: 1.5em;
611}
612#tmpl_footer #tmpl_footer_actlinksright {
613    float: right;
614}
615#tmpl_footer #tmpl_footer_metainfo {
616    margin-top: 1em;
617}
618#tmpl_footer a[rel=license] {
619    margin-left: 5px;
620}
621
622/* more width for all admin and edit actions */
623div#pagewrap.admin {
624    width: 95%;
625    max-width: 1100px !important;
626    padding: auto 15px;
627}
628div#pagewrap.admin div#content {
629    width: 100%;
630}
631/* admin menu: config manager */
632.dokuwiki #config__manager fieldset {
633   margin-left: 0;
634   margin-right: 0;
635   background-color: transparent;
636   border: 1px solid #606060;
637}
638/* admin menu: acl manager tree */
639.dokuwiki div#acl_manager div#acl__tree {
640    background-color: __background_alt__;
641}
642/* admin menu: plugin manager */
643.dokuwiki div#plugin__manager form.plugins input[type=checkbox] {
644    margin-top: 0.5em;
645}
646/* admin menu: plugin manager - more space for plugin info */
647.dokuwiki div#plugin__manager dl {
648    font-size: 0.857em; /* 12px, base 14px (see ".dokuwiki") */
649}
650.dokuwiki div#plugin__manager dt {
651    width: 11em;
652    font-weight: bold;
653}
654.dokuwiki div#plugin__manager dd {
655    margin-left: 11em;
656}
657/* "remeber me" checkbox, login */
658.dokuwiki form#dw__login input.edit {
659    font-weight: normal;
660    margin-left: 0.4em;
661    margin-right: 0.4em;
662}
663.dokuwiki form#dw__login label.simple {
664    text-align: center;
665    padding-bottom: 0.4em;
666}
667.dokuwiki form#dw__register input.edit {
668    font-weight: normal;
669    margin-left: 0.4em;
670}
671.dokuwiki form#dw__register fieldset {
672   width: 490px;
673}
674
675/* taken from starter template's design.css:
676   license note in footer and under edit window */
677.dokuwiki div.license {
678    font-size: 93.75%;
679}
680
681/* taken from starter template's design.css: JS popup */
682.JSpopup {
683    background-color: __background__;
684    color: __text__;
685    border: 1px solid __border__;
686    line-height: 1.2;
687    padding: 0 .2em;
688}
689.JSpopup ul,
690.JSpopup ol {
691    padding-left: 0;
692}
693
694
695
696/******************************************************************************
697 ******** Adjust the starter template styles: _diff.css            ************
698 ******** Have a look at http://j.mp/eq8zSo for more information   ************
699 ******************************************************************************/
700.dokuwiki table.diff td {
701    font-family: Consolas,monospace;
702    /* same font stack should be used for "pre, code, samp, kbd" and
703       ".dokuwiki textarea.edit" */
704    font-size: 0.857em; /* 12px (base: 14px) */
705}
706.dokuwiki table.diff th {
707    font-size: 0.779em; /* 12px (base: 15.4px) */
708}
709.dokuwiki table.diff td.diff-addedline,
710.dokuwiki table.diff td.diff-deletedline,
711.dokuwiki table.diff td.diff-context {
712    padding-left: 2px;
713    padding-right: 2px;
714}
715
716
717
718/******************************************************************************
719 ******** Adjust the starter template styles: _links.css           ************
720 ******** Have a look at http://j.mp/eq8zSo for more information   ************
721 ******************************************************************************/
722/* wikilink1 = existing wikipage
723   wikilink2 = not existing wikipage */
724.dokuwiki a.wikilink1,
725.dokuwiki a.wikilink1:link,
726.dokuwiki a.wikilink1:visited {
727    color: __existing__;
728    border-bottom: 1px dashed __existing__;
729}
730.dokuwiki a.wikilink2,
731.dokuwiki a.wikilink2:link,
732.dokuwiki a.wikilink2:visited {
733    color: __missing__;
734    border-bottom: 1px dashed __missing__;
735}
736.dokuwiki a.wikilink1:hover,
737.dokuwiki a.wikilink1:focus,
738.dokuwiki a.wikilink1:active,
739.dokuwiki a.wikilink2:hover,
740.dokuwiki a.wikilink2:focus,
741.dokuwiki a.wikilink2:active {
742    border-bottom: 0 none !important;
743}
744/* external link */
745.dokuwiki a.urlextern {
746    padding-left: 0;
747    background: 0 none;
748    border-bottom: 1px dashed __existing__ !important;
749}
750.dokuwiki a.urlextern:active,
751.dokuwiki a.urlextern:hover {
752    border-bottom: 0 none !important;
753}
754/* special links */
755.dokuwiki a.windows,
756.dokuwiki a.mail,
757.dokuwiki a.mediafile,
758.dokuwiki a.interwiki {
759    border-bottom: 1px dashed __existing__;
760}
761.dokuwiki a.windows:hover,
762.dokuwiki a.windows:active,
763.dokuwiki a.mail:hover,
764.dokuwiki a.mail:active,
765.dokuwiki a.mediafile:hover,
766.dokuwiki a.mediafile:active,
767.dokuwiki a.interwiki:hover,
768.dokuwiki a.interwiki:active {
769    border-bottom: 0 none;
770}
771/* any link to current page */
772.dokuwiki span.curid a {
773    font-weight: normal;
774}
775
776
777
778/******************************************************************************
779 ******** Adjust the starter template styles: _toc.css             ************
780 ******** Old Table of contents (TOC), until DokuWiki 2012-01-25   ************
781 ******** Have a look at http://j.mp/eq8zSo for more information   ************
782 ******************************************************************************/
783.dokuwiki div.toc {
784    float: left;
785    font-family: Verdana,'Liberation Sans',Arial,Helvetica,sans-serif;
786    margin: 0 0 1.5em;
787    padding: 0;
788    width: 100%;
789    clear: both;
790    background-color: transparent;
791}
792.dokuwiki div.toc div.tocheader {
793    font-family: 'Droid Sans','Liberation Sans',Arial,Helvetica,sans-serif;
794    font-size: 1.429em; /* 20px, base 14px (see ".dokuwiki") */
795    font-weight: normal;
796}
797.dokuwiki div.toc #toc__header {
798    background-color: transparent;
799    border: 1px solid #606060;
800    padding: 0.5em;
801    margin-bottom: 0;
802}
803/* see http://jonrohan.me/guide/css/creating-triangles-in-css/ for info about
804   css arrows */
805.dokuwiki div.toc span.toc_open,
806.dokuwiki div.toc span.toc_close {
807    border-color: transparent;
808}
809.dokuwiki div.toc span.toc_open {
810    border-top-color: __text__ !important;
811}
812.dokuwiki div.toc span.toc_close {
813    border-bottom-color: __text__ !important;
814}
815.dokuwiki div.toc #toc__inside {
816    background-color: transparent;
817    border-right: 1px dotted #606060;
818    border-left: 1px dotted #606060;
819    border-bottom: 1px dotted #606060;
820    color: __text__;
821    padding-bottom: 7px !important;
822}
823.dokuwiki div.toc #toc__inside ul,
824.dokuwiki div.toc #toc__inside ul ul {
825    padding-left: 1.7em;
826}
827.dokuwiki div.toc #toc__inside ul li {
828    list-style: circle;
829}
830.dokuwiki div.toc #toc__inside a,
831.dokuwiki div.toc #toc__inside a:visited {
832    color: __text__;
833}
834.dokuwiki div.toc #toc__inside a,
835.dokuwiki div.toc #toc__inside a:visited {
836    color: __text__;
837}
838.dokuwiki div.toc #toc__inside a:hover,
839.dokuwiki div.toc #toc__inside a:active {
840    border-bottom: 1px dashed __text__;
841}
842
843
844
845
846/******************************************************************************
847 ******** Adjust the starter template styles: _toc.css             ************
848 ******** New Table of contents (TOC), since DokuWiki 2012-09-10   ************
849 ******** Have a look at http://j.mp/eq8zSo for more information   ************
850 ******************************************************************************/
851div.dokuwiki #dw__toc {
852    margin: 2.4em 0 0 2em;
853    float: right;
854    width: 200px;
855    font-family: Verdana,'Liberation Sans',Arial,Helvetica,sans-serif;
856    font-size: 90%;
857    background-color: transparent;
858}
859
860div.dokuwiki #dw__toc h3 {
861    font-family: 'Droid Sans','Liberation Sans',Arial,Helvetica,sans-serif;
862    font-size: 1em; /* 20px, base 14px (see ".dokuwiki") */
863    font-weight: bold;
864    background-color: transparent;
865    border: 1px solid #606060;
866    padding: 0.2em 0.5em;
867    margin-bottom: 0;
868}
869
870div.dokuwiki #dw__toc h3 strong {
871    margin-top: 0.2em;
872}
873
874div.dokuwiki #dw__toc h3 ~ div {
875    background-color: transparent;
876    border-right: 1px dotted #606060;
877    border-left: 1px dotted #606060;
878    border-bottom: 1px dotted #606060;
879    color: __text__;
880    padding-bottom: 7px !important;
881    padding-left: 10px;
882    padding-right: 7px;
883}
884
885.dokuwiki #dw__toc ul,
886.dokuwiki #dw__toc ul ul {
887    padding-left: 1em;
888}
889.dokuwiki #dw__toc ul li {
890    list-style: circle;
891}
892.dokuwiki #dw__toc a,
893.dokuwiki #dw__toc a:visited {
894    color: __text__;
895}
896.dokuwiki #dw__toc a,
897.dokuwiki #dw__toc a:visited {
898    color: __text__;
899}
900.dokuwiki #dw__toc a:hover,
901.dokuwiki #dw__toc a:active {
902    border-bottom: 1px dashed __text__;
903}
904
905
906
907
908/******************************************************************************
909 ******** Adjust the starter template styles: _footnotes.css         **********
910 ******** Have a look at http://j.mp/eq8zSo for more information     **********
911 ******************************************************************************/
912/* JSpopup */
913div.insitu-footnote {
914    background-color: #f7f9fa;
915    border: 1px solid __border__;
916    padding: 3px 7px 3px 10px;
917    font-size: 0.857em; /* 12px, base 14px (see ".dokuwiki") */
918}
919.dokuwiki div.footnotes {
920    font-size: 0.857em; /* 12px, base 14px (see ".dokuwiki") */
921    border-top: 1px dotted #606060;
922}
923/* link to text from footnote at bottom */
924.dokuwiki div.footnotes div.fn sup a.fn_bot {
925    font-weight: normal;
926}
927
928
929
930/******************************************************************************
931 ******** Adjust the starter template styles: _forms.css             **********
932 ******** Have a look at http://j.mp/eq8zSo for more information     **********
933 ******************************************************************************/
934.dokuwiki fieldset {
935    margin: auto;
936}
937/* normal buttons */
938.dokuwiki input.button,
939.dokuwiki button.button {
940    background: __text__ none !important;
941    border: 1px solid __text__;
942    color: #fff;
943    font-weight: bold;
944    font-size: 10px !important;
945    padding: 5px 6px;
946    line-height: 1.333em;
947}
948.dokuwiki input.button[type=image],
949.dokuwiki button.button[type=image] {
950    background: none;
951    background-color: transparent !important;
952    border: 0;
953    padding: 0;
954}
955
956
957
958/******************************************************************************
959 ******** Adjust the starter template styles: _edit.css            ************
960 ******** Have a look at http://j.mp/eq8zSo for more information   ************
961 ******************************************************************************/
962/* nice alphatransparency background for toolbar except for IE <7 */
963html>body button.toolbutton {
964    background:  __background__ url(images/buttonshadow.png) repeat-x bottom;
965}
966/* buttons: section edit at wiki page */
967.dokuwiki div.secedit input.button {
968    color: __background_neu__ !important;
969    background: none !important;
970    border: none;
971}
972.dokuwiki div.secedit input.button:hover {
973    color: __existing__ !important;
974}
975.dokuwiki textarea.edit,
976.dokuwiki input.edit,
977.dokuwiki select.edit {
978    border: 1px solid #606060;
979    background-color: #fff;
980}
981.dokuwiki div.preview {
982    border-color: #606060;
983}
984.dokuwiki textarea.edit {
985    line-height: 1.214em; /* 17px, base 14px (see ".dokuwiki") */
986    font-family: Consolas,monospace;
987    /* same font stack should be used for "pre, code, samp, kbd" and
988       ".dokuwiki table.diff td" */
989}
990div.picker {
991    background-color: #ebebeb;
992}
993/* buttons inside of picker */
994div.picker button.pickerbutton {
995    border: 0;
996    background-color: #ebebeb;
997}
998
999
1000
1001/******************************************************************************
1002 ******** Adjust the starter template styles: _imgdetail.css       ************
1003 ******** Have a look at http://j.mp/eq8zSo for more information   ************
1004 ******************************************************************************/
1005#dokuwiki__detail {
1006    padding-left: 2.5em;
1007}
1008#dokuwiki__detail h1 {
1009    margin-bottom: 20px !important;
1010    padding: 0;
1011    line-height: 1em;
1012}
1013
1014
1015
1016/******************************************************************************
1017 ******** Adjust the starter template styles: _media_popup.css       **********
1018 ******** Have a look at http://j.mp/eq8zSo for more information     **********
1019 ******************************************************************************/
1020html.popup {
1021    background-image: none;
1022    background-color: #fff;
1023    font-size: 14px;
1024}
1025html.popup body {
1026    background-image: none;
1027    background-color: #fff;
1028}
1029html.popup #media__content a.select {
1030    text-decoration: none;
1031    border-bottom: 0 none;
1032}
1033html.popup #media__content a.select:hover {
1034    text-decoration: underline;
1035}
1036html.popup #media__manager button {
1037    /* nice alphatransparency background for toolbar except for IE <7 */
1038    background: #fff url(images/buttonshadow.png) repeat-x bottom  !important;
1039    border: 2px;
1040    border-color: #ebebeb;
1041    padding: 0 6px;
1042}
1043html.popup #media__popup {
1044    background-color: __background_neu__;
1045    width: 310px;
1046}
1047html.popup #media__manager h1,
1048html.popup #media__manager h2,
1049html.popup #media__popup h1,
1050html.popup #media__popup h2 {
1051    line-height: 1em;
1052    margin-top: 0 !important;
1053    padding-top: 2px;
1054}
1055html.popup html.popup #media__opts {
1056    padding-left: 1em;
1057    margin-bottom: 0.5em;
1058}
1059html.popup #media__opts input {
1060    float: left;
1061    display: block;
1062    margin-top: 4px;
1063    position: absolute;
1064}
1065*+html.popup #media__opts input,
1066* html.popup #media__opts input {
1067    position: static;
1068}
1069html.popup #media__opts label {
1070    display: block;
1071    float: left;
1072    margin-left: 20px;
1073    margin-bottom: 4px;
1074}
1075*+html.popup #media__opts label,
1076* html.popup #media__opts label {
1077    margin-left: 10px;
1078}
1079html.popup #media__opts br {
1080    clear: left;
1081}
1082
1083
1084
1085/******************************************************************************
1086 ******** Adjust the starter template styles: _media_fullscreen.css  **********
1087 ******** Have a look at http://j.mp/eq8zSo for more information     **********
1088 ******************************************************************************/
1089#mediamanager__page h2,
1090#mediamanager__page h3 {
1091    font-size: 12px !important;
1092    font-family: Verdana,'Liberation Sans',Arial,Helvetica,sans-serif;
1093    line-height: 1.5em !important;
1094    font-weight: normal !important;
1095    padding: 3px 10px !important;
1096}
1097#mediamanager__page div.namespaces h2 {
1098    margin-left: 0.3em !important;
1099    margin-bottom: 0 !important;
1100    padding-top: 0.5em !important;
1101    padding-bottom: 0.6em !important;
1102}
1103#mediamanager__page div.namespaces div.panelHeader {
1104    font-size: 12px;
1105    padding-top: 5px;
1106}
1107#mediamanager__page h3,
1108#mediamanager__page ul.tabs li {
1109    margin: 0 !important;
1110    padding: 0 !important;
1111    font-size: 12px;
1112}
1113#mediamanager__page .panelHeader ul {
1114    list-style-image: none !important;
1115}
1116#mediamanager__page .panelHeader ul .ui-buttonset {
1117    font-size: 12px ;
1118}
1119#mediamanager__page .panelHeader ul li.ui-buttonset {
1120    background-position: 3px 0;
1121    padding-bottom: 3px;
1122}
1123#mediamanager__page .panelHeader div.no input.button {
1124    padding: 1px;
1125    line-height: 1em;
1126}
1127/* The ".mediamanagerfix" class gets assigned in main.php for the full screen
1128   media manager only. */
1129.dokuwiki div#content.mediamanagerfix {
1130    min-height: 0; /* the automatic resize (JS) has many problems if a parent container got a min-height */
1131}
1132.dokuwiki div#content.mediamanagerfix h1 {
1133    line-height: 1em;
1134    margin-top: -15px !important;
1135    margin-bottom: 15px !important;
1136}
1137
1138
1139
1140/******************************************************************************
1141 ******** Adjust the starter template styles: _modal.css             **********
1142 ******** Have a look at http://j.mp/eq8zSo for more information     **********
1143 ******************************************************************************/
1144#link__wiz {
1145    width: 350px;
1146    height: 290px;
1147    line-height: 1.357em; /* 19px, base 14px (see ".dokuwiki") */
1148    text-align: center;
1149}
1150#link__wiz_header {
1151    line-height: 1em;
1152}
1153#link__wiz_result {
1154    width: 343px;
1155    height: 233px;
1156}
1157#link__wiz_result a:link,
1158#link__wiz_result a:link:active,
1159#link__wiz_result a:visited,
1160#link__wiz_result a:visited:active {
1161    text-decoration: none;
1162    border-bottom: 0 none;
1163}
1164#link__wiz_result a:hover {
1165    text-decoration: underline;
1166}
1167
1168
1169
1170/******************************************************************************
1171 ************************* Additional Plugin CSS ******************************
1172 ******************************************************************************/
1173/* bureaucracy */
1174.dokuwiki form.bureaucracy__plugin fieldset {
1175    border: 1px dotted #606060;
1176}
1177.dokuwiki form.bureaucracy__plugin label span,
1178.dokuwiki form.bureaucracy__plugin input.edit,
1179.dokuwiki form.bureaucracy__plugin textarea.edit {
1180    text-align: left !important;
1181    margin: auto 5px;
1182    float: none !important;
1183    width: 96% !important;
1184    min-width: 96%;
1185    max-width: 96%;
1186}
1187/* gallery plugin */
1188.dokuwiki .gallery table,
1189.dokuwiki .gallery td {
1190    border: 0 none;
1191}
1192
1193
1194