xref: /template/wikiweko/static/css/screen.css (revision 9868d799eb5d82b983cbcb49a9f443ee6ccca453)
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/* Notes about how the template CSS works:
10
11   - This template includes 3rd party CSS files:
12     1) CSS from the "starter" DokuWiki template by Anika Henke (brings
13        important and basic styling for syntax and core features)
14     2) CSS from the original "vector" skin for MediaWiki (brings the basic
15        layout and overwrites some "default" styling)
16     These files will be included BEFORE this specific CSS file. In this file,
17     I just overwrite non fitting MediaWiki "vector" and DokuWiki "starter"
18     CSS + add some CSS for some exclusive objects of this template
19   - Why I am doing this? Well, read <http://j.mp/jIyE2>. I followed the main
20     principle described there and simply apply it to the two sources ("starter"
21     template and "vector" skin).
22   - This way also ensures a painless update, if there are new versions of
23     MediaWiki vector or DokuWiki CSS files. Cause these 3rd party components
24     were not edited or partially copied, I do not have to track their changes
25     in detail.
26
27   Explanation of the different sections in here:
28   - "Styles/corrections for the template itself"
29     General CSS targeting the template structure. This section overwrites non
30     fitting CSS of the "vector" MediaWiki skin and "starter" DokuWiki
31     template. Read the notes above and <http://j.mp/jIyE2> if you do not know
32     why I am doing it this way.
33   - "Browser Hacks and corrections"
34     Section containing bigger hacks for browser specific problems.
35*/
36
37
38/******************************************************************************
39 ************** Styles/corrections for the template itself ********************
40 ******************************************************************************/
41/* --------------- general styling --------------- */
42/* general tags */
43html {
44  background-color: #f3f3f3;
45}
46div.dokuwiki p,
47div.dokuwiki blockquote,
48div.dokuwiki table,
49div.dokuwiki pre {
50  margin: 0 0 1.0em 0;
51}
52div.dokuwiki caption {
53  font-family: sans-serif;
54}
55
56/* forms */
57div.dokuwiki textarea.edit {
58  font-family: monospace, serif;
59  /* second generic font fixes problem with font-size, see
60http://meyerweb.com/eric/thoughts/2010/02/12/fixed-monospace-sizing/ */
61  font-size: 14px;
62  color: __text__;
63  background-color: __background__;
64  border: 1px solid __border__;
65  padding: 0.3em 0 0 0.3em;
66  width: 100%;
67  line-height: 17px;
68}
69
70div.dokuwiki legend {
71  font-family: sans-serif;
72  font-weight: normal;
73  background-color: transparent;
74}
75
76/* nice alphatransparency background except for IE <7 */
77html>body div.dokuwiki textarea.edit {
78  background: __background__ url(static/3rd/dokuwiki/inputshadow.png) repeat-x top;
79}
80
81div.dokuwiki input.edit,
82div.dokuwiki select.edit {
83  font-size: 100%;
84  border: 1px solid __border__;
85  color: __text__;
86  background-color: __background__;
87  vertical-align: middle;
88  margin: 1px;
89  padding: 0.20em 0.3em;
90  display: inline;
91  font-weight: normal;
92}
93
94/* nice alphatransparency background except for IE <7 */
95html>body div.dokuwiki input.edit,
96html>body div.dokuwiki select.edit {
97  background: __background__ url(static/3rd/dokuwiki/inputshadow.png) repeat-x top;
98}
99
100div.dokuwiki select.edit {
101  padding: 0.1em 0;
102}
103
104div.dokuwiki input.missing {
105  font-size: 100%;
106  border: 1px solid __border__;
107  color: __text__;
108  background-color: #ffcccc;
109  vertical-align: middle;
110  margin: 1px;
111  padding: 0.20em 0.3em;
112  display: inline;
113}
114
115/* disabled style - not understood by IE */
116div.dokuwiki textarea.edit[disabled],
117div.dokuwiki textarea.edit[readonly],
118div.dokuwiki input.edit[disabled],
119div.dokuwiki input.edit[readonly],
120div.dokuwiki input.button[disabled],
121div.dokuwiki select.edit[disabled] {
122  background-color: __background_neu__!important;
123  color: __text_neu__!important;
124  font-weight: normal;
125}
126
127/* edit form */
128div.dokuwiki div.toolbar,
129div.dokuwiki div#wiki__editbar {
130   margin: 2px 0;
131   text-align: left;
132}
133div.dokuwiki div#size__ctl {
134   float: right;
135   width: 60px;
136   height: 2.7em;
137}
138div.dokuwiki #size__ctl img {
139   cursor: pointer;
140}
141div.dokuwiki div#wiki__editbar div.editButtons {
142   float: left;
143   padding: 0 1.0em 0.7em 0;
144}
145div.dokuwiki div#wiki__editbar div.summary {
146   float: left;
147}
148div.dokuwiki .nowrap {
149   white-space: nowrap;
150}
151div.dokuwiki div#draft__status {
152  float: right;
153  color: __text_alt__;
154}
155
156div.dokuwiki div.license {
157  padding: 0.5em;
158  font-size: 90%;
159  text-align: center;
160}
161
162div.dokuwiki form#dw__editform div.license {
163  clear: left;
164  font-size: 90%;
165}
166
167/* buttons */
168div.dokuwiki input.button,
169div.dokuwiki button.button {
170  border: 1px solid __border__;
171  color: __text__;
172  background-color: __background__;
173  vertical-align: middle;
174  text-decoration: none;
175  font-size: 100%;
176  cursor: pointer;
177  margin: 1px;
178  padding: 0.125em 0.4em;
179  font-weight: normal;
180}
181
182/* nice alphatransparency background except for IE <7 */
183html>body div.dokuwiki input.button,
184html>body div.dokuwiki button.button {
185  background: __background__ url(static/3rd/dokuwiki/buttonshadow.png) repeat-x bottom;
186}
187
188* html div.dokuwiki input.button,
189* html div.dokuwiki button.button {
190  height: 1.8em;
191}
192
193/* links */
194div.dokuwiki a:link,
195div.dokuwiki a:visited {
196  color: #436976;
197  text-decoration: none;
198}
199div.dokuwiki a:hover,
200div.dokuwiki a:active {
201  color: __text__;
202  text-decoration: underline;
203}
204
205/* missing page links outside rendered articles */
206a.wikilink2,
207a.wikilink2:link,
208a.wikilink2:visited,
209a.wikilink2:hover {
210  color: __missing__ !important;
211  text-decoration: none;
212}
213a.wikilink2:hover {
214  border-bottom: 0 none !important;
215  text-decoration: none !important;
216}
217
218/* link to current page */
219.dokuwiki span.curid a {
220  font-weight: normal;
221}
222
223/* internal link */
224.dokuwiki a.wikilink1,
225.dokuwiki a.wikilink1:visited {
226  color: __existing__ !important;
227}
228
229/* external links */
230div#bodyContent a.urlextern {
231  background: url(static/3rd/vector/external-link-ltr-icon.png) center right no-repeat;
232  padding: 0 13px 0 0;
233}
234div.dokuwiki a.urlextern:visited {
235  color: purple;
236}
237
238/* email link */
239div#bodyContent a.mail {
240  background: transparent url(static/3rd/vector/mail-icon.png) center right no-repeat;
241  padding: 0 13px 0 0;
242}
243
244/* windows share */
245div.dokuwiki a.windows {
246  background: transparent url(static/3rd/dokuwiki/windows.gif) center right no-repeat;
247  padding: 0 18px 1px 0;
248}
249
250/* interwiki link */
251div.dokuwiki a.interwiki {
252  background-position: center right;
253  padding: 0 17px 0 0;
254}
255div.dokuwiki a.interwiki:visited {
256  color: purple;
257}
258
259/* headlines */
260h1,
261h2,
262h3,
263h4,
264h5,
265h6 {
266  font-family: sans-serif;
267}
268div#content .dokuwiki h1,
269div#content .dokuwiki h2,
270div#content .dokuwiki h3,
271div#content .dokuwiki h4,
272div#content .dokuwiki h5,
273div#content .dokuwiki h6 {
274  border-bottom: 1px solid #aaa;
275  color: __text__;
276  margin: 0;
277  padding-bottom: 0.17em;
278  padding-top: 0.5em;
279}
280div#content .dokuwiki h1 a,
281div#content .dokuwiki h2 a,
282div#content .dokuwiki h3 a,
283div#content .dokuwiki h4 a,
284div#content .dokuwiki h5 a,
285div#content .dokuwiki h6 a {
286  color: __text__;
287}
288div#content .dokuwiki h1 {
289  font-size: 160%;
290}
291div#content .dokuwiki h1,
292div#content .dokuwiki h2 {
293  margin-bottom: 0.6em;
294  font-weight: normal;
295}
296div#content .dokuwiki h3,
297div#content .dokuwiki h4,
298div#content .dokuwiki h5,
299div#content .dokuwiki h6 {
300  font-weight: bold;
301  border-bottom: none;
302  margin-bottom: 0.3em;
303}
304div#content .dokuwiki h3 {
305  font-size: 132%;
306}
307div#content .dokuwiki h4 {
308  font-size: 116%;
309}
310div#content .dokuwiki h5 {
311  font-size: 100%;
312}
313div#content .dokuwiki h6 {
314  font-size: 80%;
315}
316
317/* remove indent from different sections */
318div#content .dokuwiki div.level1,
319div#content .dokuwiki div.level2,
320div#content .dokuwiki div.level3,
321div#content .dokuwiki div.level4,
322div#content .dokuwiki div.level5 {
323  margin-left: 0;
324}
325
326/* lists */
327div.dokuwiki ul {
328  line-height: 1.5em;
329  padding: 0;
330  list-style-type: square;
331  list-style-image: url(static/3rd/vector/bullet-icon.png) !important;
332  margin: 0.3em 0 1em 1.5em;
333  color: __text_alt__;
334}
335
336div.dokuwiki ol {
337  line-height: 1.5em;
338  padding: 0;
339  list-style-image: none;
340  margin: 0.3em 0 1em 3.2em;
341  color: __text_alt__;
342  font-weight: bold;
343}
344
345div.dokuwiki li ul,
346div.dokuwiki li ol {
347  margin: 0 0 0 1.5em; /* no bottom gap in between and smaller left margin for nested lists */
348}
349
350div.dokuwiki .li {
351  color: __text__;  /* the list items overriding the ul/ol definition */
352  font-weight: normal;
353}
354
355div.dokuwiki ol { list-style-type: decimal; }
356div.dokuwiki ol ol { list-style-type: upper-roman; }
357div.dokuwiki ol ol ol { list-style-type: lower-alpha; }
358div.dokuwiki ol ol ol ol { list-style-type: lower-greek; }
359
360div.dokuwiki li.open {
361  list-style-image: url(static/3rd/dokuwiki/images/open.gif);
362}
363
364div.dokuwiki li.closed {
365  list-style-image: url(static/3rd/dokuwiki/closed.gif);
366}
367
368div.dokuwiki li {
369  margin-left: 0;
370}
371
372/* quotes */
373div#content .dokuwiki blockquote {
374  border-left: 2px solid __border__;
375  padding-left: 3px;
376  padding-right: 0;
377  margin-left: 0.2em;
378}
379
380/* preformatted stuff, source code */
381div#content .dokuwiki code,
382div#content .dokuwiki pre,
383div#content .dokuwiki pre.code,
384div#content .dokuwiki pre.file {
385  font-size: 100%;
386  background-color: #f9f9f9;
387}
388div#content .dokuwiki pre,
389div#content .dokuwiki pre.code,
390div#content .dokuwiki pre.file {
391  line-height: 1.2em;
392  padding: 0.5em;
393  border-style: dashed;
394}
395div#content .dokuwiki dl.file,
396div#content .dokuwiki dl.file dd {
397  margin-left: 0;
398}
399div#content .dokuwiki dl.file dt {
400  background-color: #f9f9f9;
401  border-bottom: 2px solid #f9f9f9;
402}
403div#content .dokuwiki dl.file dt,
404div#content .dokuwiki dl.code dt {
405  border-top: 1px dashed __border__;
406  border-left: 1px dashed __border__;
407  border-right: 1px dashed __border__;
408  display: inline;
409  margin-left: 2em;
410  padding: 0.1em 1em;
411}
412div#content .dokuwiki dl.file dt a,
413div#content .dokuwiki dl.code dt a {
414  color: __text__;
415}
416
417/* "you are here" and "breadcrumbs" */
418.catlinks {
419  font-size: 80%;
420  margin-bottom: 1em;
421}
422.catlinks p,
423.catlinks div {
424  margin: 0.3em 0;
425}
426
427/* tables */
428td[align="right"],
429th[align="right"] {
430  text-align: right;
431}
432
433div.dokuwiki table.inline {
434  background-color: __background__;
435  min-width: 0;
436}
437
438div.dokuwiki table.inline th {
439  border-color: __border__;
440  background-color: __background_alt__;
441}
442
443div.dokuwiki table.inline td {
444  border-color: __border__;
445}
446
447/* section edit buttons */
448.dokuwiki .secedit {
449  margin-top: 0;
450}
451div#content .dokuwiki div.secedit input.button {
452  border: 0 none;
453  text-transform: lowercase;
454  color: __existing__;
455  margin: 0;
456  padding: 0;
457  cursor: pointer;
458  background: transparent none;
459}
460
461/* footnotes */
462div.dokuwiki div.fn {
463  font-size: 90%;
464}
465
466/* link to footnote inside the text */
467.dokuwiki sup a.fn_top {
468  font-size: 95%;
469}
470
471/* insitu-footnotes */
472div.insitu-footnote {
473  font-size: 85%;
474  padding: 4px;
475}
476div.insitu-footnote code,
477div.insitu-footnote pre {
478  font-size: 90%;
479}
480
481/* Toolbar */
482button.toolbutton {
483  background-color: __background__;
484  padding: 0px;
485  margin: 0 1px 0 0;
486  border: 1px solid __border__;
487  cursor: pointer;
488}
489
490/* nice alphatransparency background except for IE <7 */
491html>body button.toolbutton {
492  background: __background__ url(static/3rd/dokuwiki/buttonshadow.png) repeat-x bottom;
493}
494
495div.picker {
496  width: 250px;
497  border: 1px solid __border__;
498  background-color: __background_alt__;
499}
500
501div.pk_hl {
502  width: 125px;
503}
504
505button.pickerbutton {
506  padding: 0px;
507  margin: 0 1px 1px 0;
508  border: 0;
509  background-color: transparent;
510  font-size: 80%;
511  cursor: pointer;
512}
513
514/* pagelist plugin compatibilty */
515div.dokuwiki table.pagelist tr,
516div.dokuwiki table.pagelist td {
517  border-left: 0 none;
518  border-right: 0 none;
519}
520
521
522/* --------------- sidebar --------------- */
523div#panel {
524  line-height: 15px;
525}
526div#panel .dokuwiki {
527  font-size: 0.75em;
528}
529div#panel a.wikilink1,
530div#panel a.wikilink2,
531div#panel a.urlextern {
532  padding-left: 0;
533  background: transparent none;
534  color: __existing__;
535}
536div#panel .body {
537  margin-right: 0.45em !important;
538  padding-top: 0.25em !important;
539}
540div#panel .body .dokuwiki p {
541  margin: 0;
542}
543div#panel .body .dokuwiki ul li {
544  font-size: 1em !important;
545  padding: 0.25em 0 !important;
546}
547div#panel .body .dokuwiki li ul {
548  font-size: 95% !important;
549  margin: 0.25em 0 0 1em !important;
550}
551div#panel .body .dokuwiki ol {
552  margin: 0 0 0 1.65em;
553}
554/* translation plugin by Anreas Gohr */
555div#panel .body .dokuwiki .plugin_translation span {
556  display: none;
557}
558div#panel .body .dokuwiki .plugin_translation {
559  padding-right: 0 !important;
560  text-align: left;
561}
562div#panel .body .dokuwiki .plugin_translation,
563div#panel .body .dokuwiki .plugin_translation ul,
564div#panel .body .dokuwiki .plugin_translation li {
565  float: none;
566  margin: 0;
567  padding-right: 0;
568  line-height: 1.125em;
569  font-size: 100%;
570}
571div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:link,
572div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:hover,
573div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:active,
574div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:visited,
575div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:link,
576div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:hover,
577div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:active,
578div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:visited {
579  background-color: transparent;
580  margin: 0;
581  padding: 0;
582}
583div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:before,
584div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:before {
585  content: attr(title) " (";
586}
587div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:after,
588div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:after {
589  content: ") ";
590}
591div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1 {
592  color: __existing__ !important;
593}
594div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2 {
595  color: __missing__ !important;
596}
597div#panel .body .dokuwiki .plugin_translation ul li a.wikilink1:hover {
598  text-decoration: underline;
599}
600div#panel .body .dokuwiki .plugin_translation ul li a.wikilink2:hover {
601  text-decoration: underline !important;
602}
603div#panel .body .dokuwiki .plugin_translation select {
604  width: 90%;
605  margin: auto !important;
606  text-align: left;
607}
608div#panel .body .dokuwiki .plugin_translation option,
609div#panel .body .dokuwiki .plugin_translation option.wikilink1,
610div#panel .body .dokuwiki .plugin_translation option.wikilink2 {
611  padding: auto 5px !important;
612  text-align: left;
613}
614
615
616/* --------------- search --------------- */
617/* copy of the original vector id="searchInput" styles cause we have to use
618   another id for DokuWiki */
619div#simpleSearch input#qsearch__in {
620  margin: 0;
621  border-width: 0;
622  padding: 0.25em;
623  line-height: 1em;
624  font-size: 0.8em;
625  width: 14em;
626  background-color: transparent;
627}
628/* Ajax quicksearch */
629#qsearch__out {
630  top: 72px;
631  width: 100%;
632  display: none;
633  left: auto;
634  right: 7.93335px;
635  bottom: auto;
636  height: auto;
637  font-family: sans-serif;
638  font-size: 0.8em;
639  background-color: window;
640  border: 1px solid #aaa;
641  padding: 0;
642}
643#qsearch__out ul {
644  padding: 0;
645  margin: 0;
646  list-style: none;
647}
648#qsearch__out li {
649  color: windowtext;
650  margin: 0;
651  width: 100%;
652  padding: 1px;
653}
654#qsearch__out li a {
655  width: 97%; /* leave some space for browser rounding errors */
656  display: block;
657}
658#qsearch__out li:hover {
659  background-color: #bbb;
660}
661#qsearch__out li a,
662#qsearch__out li a:link,
663#qsearch__out li a:visited,
664#qsearch__out li a:hover {
665  color: windowtext;
666  text-decoration: none;
667}
668
669
670/* --------------- footer --------------- */
671div#footer a.wikilink1,
672div#footer a.wikilink2,
673div#footer a.urlextern {
674  padding-left: 0;
675  background: transparent none;
676  color: __existing__;
677}
678/* default copyright notice layout */
679div#footer #footer-info li#footer-info-copyright .license {
680  font-size: 100%;
681  text-align: left;
682  padding: 0;
683}
684div#footer #footer-info li#footer-info-copyright .license a.urlextern {
685  margin-left: 0.4em;
686}
687
688
689/* --------------- Table of contents (TOC) ---------------  */
690div.dokuwiki div.toc {
691  margin: 1.2em 0 0 2em;
692  float: right;
693  width: 200px;
694  font-size: 80%;
695  clear: both;
696}
697
698div.dokuwiki div.tocheader {
699  border: 1px solid __border__;
700  background-color: __background_alt__;
701  text-align: left;
702  font-weight: bold;
703  padding: 3px;
704  margin-bottom: 2px;
705  line-height: 1.45em;
706}
707
708div.dokuwiki span.toc_open,
709div.dokuwiki span.toc_close {
710  border: 0.4em solid __background_alt__;
711  float: right;
712  display: block;
713  margin: 0.4em 3px 0 0;
714}
715
716div.dokuwiki span.toc_open span,
717div.dokuwiki span.toc_close span {
718  display: none;
719}
720
721div.dokuwiki span.toc_open {
722  margin-top: 0.4em;
723  border-top: 0.4em solid __text__;
724}
725
726div.dokuwiki span.toc_close {
727  margin-top: 0;
728  border-bottom: 0.4em solid __text__;
729}
730
731div.dokuwiki #toc__inside {
732  border: 1px solid __border__;
733  background-color: __background__;
734  text-align: left;
735  padding: 0.5em 0 0.7em 0;
736}
737
738div.dokuwiki ul.toc {
739  list-style-type: none;
740  list-style-image: none;
741  line-height: 1.2em;
742  padding: 0 !important;
743  margin: 0.3em 0 0 1.5em !important;
744}
745
746div.dokuwiki ul.toc li {
747  list-style-image: none;
748  list-style-type: none;
749  background: transparent url(static/3rd/dokuwiki/tocdot2.gif) 0 0.6em no-repeat;
750  padding-left: 0.4em !important;
751  margin-bottom: 0.1em !important;
752}
753
754div.dokuwiki ul.toc li.clear {
755  background-image: none;
756  padding-left: 0.4em;
757}
758
759div.dokuwiki a.toc:link,
760div.dokuwiki a.toc:visited {
761  color: #436976;
762}
763
764div.dokuwiki a.toc:hover,
765div.dokuwiki a.toc:active {
766  color: __text__;
767}
768
769div.toc,
770div.dokuwiki a.toc,
771div.dokuwiki ul.toc {
772  border: 0 none;
773  background: transparent none;
774  font-size: 100%;
775}
776
777div.dokuwiki ul.toc {
778  padding-top: 0;
779  padding-bottom: 0;
780  padding-left: 1em !important;
781  list-style-type: none !important;
782  list-style-image: none !important;
783  margin: 0 !important;
784}
785
786div.dokuwiki a.toc {
787  padding: 0;
788}
789
790
791/* --------------- generic content classes --------------- */
792div.error,
793div.info,
794div.success,
795div.notify {
796  font-size: 80%;
797  line-height: 1.25em;
798}
799
800
801/* --------------- admin menu --------------- */
802/* editing preview */
803div#content .dokuwiki div.preview {
804  margin-left: 0;
805}
806/* "remeber me" checkbox, login */
807div.dokuwiki form#dw__login label.simple {
808  text-align: center;
809  padding-bottom: 0.4em;
810}
811.dokuwiki ul.admin_tasks li a {
812  font-weight: bold;
813}
814/* acl tree */
815#acl__tree li {
816  list-style-image: none;
817  list-style-type: none;
818}
819
820
821/* --------------- media manager --------------- */
822#media__manager {
823  min-heigth: 550px;
824}
825#media__left,
826#media__right {
827  position: relative !important;
828}
829#media__right {
830  padding-left: 0.2em;
831  width: 98%;
832}
833/* make a "non-embedded"/fullpage manager possible trough hiding some stuff */
834body.mmanagernotembedded .noprint,
835body.mmanagernotembedded #siteNotice,
836body.mmanagernotembedded #footer {
837  display: none !important;
838}
839body.mmanagernotembedded #content {
840  margin: 0 !important;
841}
842
843
844/* --------------- search result formating --------------- */
845div.dokuwiki .search_result {
846  margin-bottom: 6px;
847  padding: 0 10px 0 30px;
848}
849
850div.dokuwiki .search_snippet {
851  color: __text_other__;
852  font-size: 12px;
853  margin-left: 20px;
854}
855
856div.dokuwiki .search_sep {
857  color: __text__;
858}
859
860div.dokuwiki .search_hit {
861  color: __text__;
862  background-color: __highlight__;
863}
864div.dokuwiki strong.search_hit {
865  font-weight: normal;
866}
867
868div.dokuwiki div.search_quickresult {
869  margin: 0 0 15px 30px;
870  padding: 0 10px 10px 0;
871  border-bottom: 1px dashed __border__;
872}
873div.dokuwiki div.search_quickresult h3 {
874  margin: 0 0 1.0em 0;
875  font-size: 1em;
876  font-weight: bold;
877}
878
879div.dokuwiki ul.search_quickhits {
880  margin: 0 0 0.5em 1.0em;
881}
882
883div.dokuwiki ul.search_quickhits li {
884  margin: 0 1.0em 0 1.0em;
885  float: left;
886  width: 30%;
887}
888
889div.dokuwiki .section_highlight {
890  background-color: __background_alt__ !important;
891}
892
893/* --------------- image details ----------------- */
894div.dokuwiki div.img_big {
895  float: left;
896  margin-right: 0.5em;
897}
898
899div.dokuwiki dl.img_tags dt {
900  font-weight: bold;
901  background-color: __background_alt__;
902}
903div.dokuwiki dl.img_tags dd {
904  background-color: __background_neu__;
905}
906
907div.dokuwiki div.imagemeta {
908  color: __text_neu__;
909  font-size: 70%;
910  line-height: 95%;
911}
912
913div.dokuwiki div.imagemeta img.thumb {
914  float: left;
915  margin-right: 0.1em;
916}
917
918
919
920/******************************************************************************
921 ********************* Browser Hacks and corrections **************************
922 ******************************************************************************/
923/* MSIE: fix textarea in admin menu (incl. jumping bug MSIE8) */
924textarea,
925.dokuwiki #dw__editform textarea.edit {
926  /* fix scrollbar flickers in IE8 standards mode, see
927     http://j.mp/bHExde and http://j.mp/ad7Abj for details */
928  width: 450px\9;
929  max-width: 100%\9;
930  min-width: 100%\9;
931  /* overwrite original vector with fixes for IE6/7 */
932  #width: 100% !important;
933  border: auto;
934}
935/* ajax quicksearch: MSIE 6/7 */
936* html #qsearch__out {
937  width: 206px;
938}
939#qsearch__out ul {
940  #list-style: none !important;
941  #list-style-image: none !important;
942}
943#qsearch__out li {
944  #width: 206px;
945}
946/* admin menu icons: MSIE 6/7 */
947.dokuwiki ul.admin_tasks li div.li {
948  #border-left: 1px dashed __background__; /* invisible border triggers IE to render the stuff */
949}
950