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 <http://www.dokuwiki.org/template:scanlines?&#customizing>
6  and "/user/screen.css". You have been warned!
7 *****************************************************************************/
8
9/**
10 * Design for Template Scanlines
11 *
12 * @author Andreas Gohr <andi@splitbrain.org>
13 * @author Anika Henke <anika@selfthinker.org>
14 * @author Johannes Winkler <johannes@rocking-minds.org>
15 */
16
17/*
18- selection style
19- forms
20   - animations
21	- nice alphatransparency background except for IE <7
22	- nice alphatransparency background except for IE <7
23	- disabled style - not understood by IE
24	- edit form
25	- search form
26	- buttons
27		- nice alphatransparency background except for IE <7
28- page navigator
29- links
30	- external link
31	- windows share
32	- external link & windows share & email link & interwiki link
33	- email link
34	- existing wikipage
35	- link to some embedded media
36	- not existing wikipage
37	- Back-to-Top Link (rocket)
38- Page elements
39	- embedded images
40	- smileys
41	- general headline setup
42	- special headlines
43	- indent different sections
44	- unordered lists
45	- ordered lists
46	- no bottom gap in between and smaller left margin for nested lists
47	- the list items overriding the ul/ol definition
48	- code blocks by indention
49	- code blocks by code tag
50	- code blocks by file tag
51	- filenames for file and code blocks
52	- inline tables
53- table of contents
54- Diff rendering
55- footnotes
56	- insitu-footnotes
57	- overcome IE issue with one line code or file boxes which require h. scrolling
58- search result formating
59- Additional
60	- AJAX quicksearch
61	- Toolbar
62		- nice alphatransparency background except for IE <7
63- Image Details
64*/
65
66/* selection style
67--------------------------------------------- */
68
69*::-moz-selection {
70    background-color: __selection__ ;
71}
72*::selection {
73    background-color: __selection__ ;
74}
75
76*::webkit::-webkit-selection {
77	background-color: __selection__ ;
78}
79
80/* forms
81--------------------------------------------- */
82
83/* --- animations --- */
84div.dokuwiki input.edit:hover,
85div.dokuwiki input.edit:active,
86div.dokuwiki input.edit:focus,
87div.dokuwiki input.button:hover,
88div.dokuwiki input.button:active,
89div.dokuwiki input.button:focus,
90div.dokuwiki button.button:hover,
91div.dokuwiki button.button:active,
92div.dokuwiki button.button:focus,
93div.dokuwiki select.edit:hover,
94div.dokuwiki select.edit:active,
95div.dokuwiki select.edit:focus,
96div.dokuwiki select.edit:hover,
97div.dokuwiki select.edit:active,
98div.dokuwiki select.edit:focus  {
99  border: 1px solid rgb(85, 97, 108);
100  -webkit-box-shadow: 0 0 5px rgba(85, 97, 108, .80);
101  -khtml-box-shadow: 0 0 5px rgba(85, 97, 108, .80);
102  -moz-box-shadow: 0 0 5px rgba(85, 97, 108, .80);
103  -o-box-shadow: 0 0 5px rgba(85, 97, 108, .80);
104  box-shadow: 0 0 5px rgba(85, 97, 108, .80);
105  behavior: url(htc/PIE-1.0beta5/PIE.htc);
106  -o-transition-property: border-color;
107  -webkit-transition: all 0.25s ease-in-out;
108  -moz-transition: all 0.25s ease-in-out;
109  -o-transition: all 0.25s ease-in-out;
110  transition: all 0.25s ease-in-out;
111}
112
113div.dokuwiki form {
114  border: none;
115  display: inline;
116}
117
118div.dokuwiki label.block {
119  display: block;
120  font-weight: bold;
121  text-align: right;
122}
123
124div.dokuwiki label.simple {
125  display: block;
126  font-weight: normal;
127  text-align: left;
128}
129
130div.dokuwiki label.block input.edit {
131  width: 50%;
132}
133
134div.dokuwiki fieldset {
135  border: 1px solid __border__;
136  margin: auto;
137  padding: 0.5em;
138  text-align: center;
139  width: 300px;
140}
141
142div.dokuwiki textarea.edit {
143  background: __background__;
144  border: 1px solid __border__;
145  color: __text__;
146  font-family: monospace, serif;
147  /* second generic font fixes problem with font-size, see
148     http://meyerweb.com/eric/thoughts/2010/02/12/fixed-monospace-sizing/ */
149  font-size: 100%;
150  max-width: 100%;
151  min-width: 100%;
152  padding: 0.3em 0 0 0.3em;
153  /* should just be "width: 100%", but IE8 doesn't like it, see FS#1910 + FS#1667 */
154  width: 700px;
155}
156
157/* --- nice alphatransparency background except for IE <7 --- */
158html>body div.dokuwiki textarea.edit {
159  background:  __background__ url(images/inputshadow.png) repeat-x top;
160}
161
162div.dokuwiki input.edit,
163div.dokuwiki select.edit {
164  background: __background__;
165  border: 1px solid __border__ ;
166  color: __text__;
167  display: inline;
168  font-size: 100%;
169  margin: 0.0625em;
170  padding: 0.2em 0.3em;
171  vertical-align: middle;
172}
173
174/* --- nice alphatransparency background except for IE <7 --- */
175html>body div.dokuwiki input.edit,
176html>body div.dokuwiki select.edit {
177  background:  __background__ url(images/inputshadow.png) repeat-x top;
178}
179
180div.dokuwiki select.edit {
181  padding: 0.1em 0;
182}
183
184div.dokuwiki input.missing {
185  background: #fcc !important;
186  border: 1px solid __border__;
187  color: __text__;
188  display: inline;
189  font-size: 100%;
190  margin: 0.0625em;
191  padding: 0.2em 0.3em;
192  vertical-align: middle;
193}
194
195/* --- disabled style - not understood by IE --- */
196div.dokuwiki textarea.edit[disabled],
197div.dokuwiki textarea.edit[readonly],
198div.dokuwiki input.edit[disabled],
199div.dokuwiki input.edit[readonly],
200div.dokuwiki input.button[disabled],
201div.dokuwiki select.edit[disabled] {
202  background: __background_neu__!important;
203  color: __text_neu__!important;
204}
205
206/* --- edit form --- */
207div.dokuwiki div.toolbar,
208div.dokuwiki div#wiki__editbar {
209   margin: 0.125em 0;
210   text-align: left;
211}
212div.dokuwiki div#size__ctl {
213   float: right;
214   height: 2.7em;
215   width: 60px;
216}
217div.dokuwiki #size__ctl img {
218   cursor: pointer;
219}
220div.dokuwiki div#wiki__editbar div.editButtons {
221   float: left;
222   padding: 0 1em 0.7em 0;
223}
224div.dokuwiki div#wiki__editbar div.summary {
225   float: left;
226}
227div.dokuwiki .nowrap {
228   white-space: nowrap;
229}
230div.dokuwiki div#draft__status {
231  color: __text_alt__;
232  float: right;
233}
234
235div.dokuwiki form#dw__editform div.license {
236  clear: left;
237  font-size: 90%;
238}
239
240/* --- search form --- */
241input#qsearch__in {
242  -webkit-border-left-radius: 10px;
243  -khtml-border-left-radius: 10px;
244  -moz-border-radius: 10px;
245  -o-border-radius 10px;
246  border-radius: 10px;
247  -webkit-box-shadow: 0 0 6px __box_shadow__;
248  -khtml-box-shadow: 0 0 6px __box_shadow__;
249  -moz-box-shadow: 0 0 6px __box_shadow__;
250  -o-box-shadow: 0 0 6px __box_shadow__;
251  box-shadow: 0 0 6px __box_shadow__;
252  behavior: url(htc/PIE-1.0beta5/PIE.htc);
253}
254
255/* --- buttons --- */
256div.dokuwiki input.button,
257div.dokuwiki button.button {
258  background: __background__;
259  border: 1px solid __border__;
260  color: __text__;
261  cursor: pointer;
262  font-size: 100%;
263  margin: 0.0625em;
264  padding: 0.125em 0.4em;
265  text-decoration: none;
266  vertical-align: middle;
267}
268
269*+html div.dokuwiki input.button, /* IE7 only*/
270*+html div.dokuwiki button.button {
271  border: 0;
272}
273
274*+html div.dokuwiki input.button, /* IE7 only*/
275*+html div.dokuwiki button.button {
276  border: 1px solid __border__;
277}
278
279/* nice alphatransparency background except for IE <7 */
280html>body div.dokuwiki input.button,
281html>body div.dokuwiki button.button {
282  background:  __background__ url(images/buttonshadow.png) repeat-x bottom;
283}
284
285* html div.dokuwiki input.button,
286* html div.dokuwiki button.button {
287  height: 1.8em;
288}
289
290div.dokuwiki div.secedit input.button {
291  background:  __background__ url(images/buttonshadow.png) repeat-x bottom;
292  border: 1px solid __border__;
293  color: __text__;
294  cursor: pointer;
295  display: inline;
296  float: right;
297  font-size: 10px;
298  margin: 0;
299  padding: 0;
300  text-decoration: none;
301  vertical-align: middle;
302}
303
304/* page navigator
305--------------------------------------------- */
306
307div.dokuwiki div.pagenav {
308  margin:1em 0 0;
309  backgroudn-color: black;
310}
311
312div.dokuwiki div.pagenav-prev {
313  float: left;
314  text-align: right;
315  width: 49%;
316}
317
318div.dokuwiki div.pagenav-next {
319  float: right;
320  text-align: left;
321  width: 49%;
322}
323
324/* links
325--------------------------------------------- */
326
327div.dokuwiki a:link,div.dokuwiki a:visited {
328  color: __existing__;
329  text-decoration: none;
330
331}
332
333div.dokuwiki a:hover,div.dokuwiki a:active {
334  color: __text__;
335  text-decoration: underline;
336}
337
338div.dokuwiki h1 a,
339div.dokuwiki h2 a,
340div.dokuwiki h3 a,
341div.dokuwiki h4 a,
342div.dokuwiki h5 a,
343div.dokuwiki a.nolink {
344  color: __text__ !important;
345  text-decoration: none !important;
346}
347
348/* --- external link --- */
349div.dokuwiki a.urlextern {
350  background: transparent url(images/link_icon.gif) 0px 1px no-repeat;
351  padding: 1px 0 1px 16px;
352}
353
354/* --- windows share --- */
355div.dokuwiki a.windows {
356  background: transparent url(images/windows.gif) 0px 1px no-repeat;
357  padding: 1px 0 1px 16px;
358}
359
360/* --- email link --- */
361div.dokuwiki a.mail {
362  background: transparent url(images/mail_icon.gif) 0 1px no-repeat;
363  padding: 1px 0 1px 16px;
364}
365
366/* --- external link & windows share & email link & interwiki link (icon are set by dokuwiki) --- */
367div.dokuwiki a.urlextern:link,
368div.dokuwiki a.windows:link,
369div.dokuwiki a.mail:link,
370div.dokuwiki a.interwiki:link,
371div.dokuwiki a.wikilink1:link,
372div.dokuwiki a.urlextern:visited,
373div.dokuwiki a.windows:visited,
374div.dokuwiki a.mail:visited,
375div.dokuwiki a.interwiki:visited,
376div.dokuwiki a.wikilink1:visited {
377  color: __existing__;
378  border-bottom: 1px dashed __existing__;
379  text-decoration: none;
380}
381
382div.dokuwiki a.urlextern:hover,
383div.dokuwiki a.windows:hover,
384div.dokuwiki a.mail:hover,
385div.dokuwiki a.interwiki:hover,
386div.dokuwiki a.wikilink1:hover,
387div.dokuwiki a.urlextern:active,
388div.dokuwiki a.windows:active,
389div.dokuwiki a.mail:active,
390div.dokuwiki a.interwiki:active,
391div.dokuwiki a.wikilink1:active {
392  color: __text__;
393}
394
395/* --- link to some embedded media --- */
396div.dokuwiki a.media {
397}
398
399/* --- not existing wikipage --- */
400div.dokuwiki a.wikilink2 {
401  border-bottom: 1px dashed __missing__ !important;
402  color: __missing__ !important;
403  text-decoration: none !important;
404}
405
406/* --- Back-to-Top Link (rocket) --- */
407div.dokuwiki #top_link {
408  background: url(images/sprite4.png) no-repeat;
409  background-position: 0 0;
410  bottom: 0;
411  display: inline-block;
412  height: 128px;
413  position: fixed;
414  right: 1em;
415  width: 104px;
416}
417
418div.dokuwiki #top_link:hover {
419  background-position: -106px 0;
420  height: 128px;
421  width: 104px;
422}
423
424/* Page elements
425--------------------------------------------- */
426
427div.dokuwiki div.preview {
428  background: __background_neu__;
429  border: 1px dashed __text__;
430  margin: 0 0 0 2em;
431  padding: 0.25em;
432}
433
434div.dokuwiki span.user {
435  color: __text_other__;
436  font-size: 90%;
437}
438
439div.dokuwiki li.minor {
440  color: __text_neu__;
441  font-style: italic;
442}
443
444/* --- embedded images --- */
445div.dokuwiki img.media {
446  margin:0.1875em;
447}
448
449div.dokuwiki img.medialeft {
450  border: 0;
451  float: left;
452  margin: 0 1.5em 0 0;
453}
454
455div.dokuwiki img.mediaright {
456  border: 0;
457  float: right;
458  margin: 0 0 0 1.5em;
459}
460
461div.dokuwiki img.mediacenter {
462  border: 0;
463  display: block;
464  margin: 0 auto;
465}
466
467/* --- smileys --- */
468div.dokuwiki img.middle {
469  vertical-align: middle;
470}
471
472div.dokuwiki acronym {
473  border-bottom: 1px dotted __text__;
474  cursor: help;
475}
476
477/* --- general headline setup --- */
478div.dokuwiki h1,
479div.dokuwiki h2,
480div.dokuwiki h3,
481div.dokuwiki h4,
482div.dokuwiki h5 {
483  background: inherit;
484  border-bottom: 1px solid __border__;
485  clear: left;
486  color: __text__;
487  font-size: 100%;
488  font-weight: normal;
489  margin: 0 0 1em;
490  padding: 0.5em 0 0;
491}
492
493/* special headlines */
494div.dokuwiki h1 {font-size: 160%; margin-left: 0; font-weight: bold;}
495div.dokuwiki h2 {font-size: 150%; margin-left: 20px;}
496div.dokuwiki h3 {font-size: 140%; margin-left: 40px; border-bottom: none; font-weight: bold;}
497div.dokuwiki h4 {font-size: 120%; margin-left: 60px; border-bottom: none; font-weight: bold;}
498div.dokuwiki h5 {font-size: 100%; margin-left: 80px; border-bottom: none; font-weight: bold;}
499
500/* indent different sections */
501div.dokuwiki div.level1 { margin-left: 3px; }
502div.dokuwiki div.level2 { margin-left: 23px; }
503div.dokuwiki div.level3 { margin-left: 43px; }
504div.dokuwiki div.level4 { margin-left: 63px; }
505div.dokuwiki div.level5 { margin-left: 83px; }
506
507/* --- unordered lists --- */
508div.dokuwiki ul {
509  color: __text_alt__;
510  line-height: 1.5em;
511  list-style: square none;
512  margin: 0 0 1em 3.5em;
513}
514
515/* --- ordered lists --- */
516div.dokuwiki ol {
517  color: __text_alt__;
518  font-weight: bold;
519  line-height: 1.5em;
520  list-style: decimal;
521  margin: 0 0 1em 3.5em;
522}
523
524/* --- no bottom gap in between and smaller left margin for nested lists --- */
525div.dokuwiki li ul,
526div.dokuwiki li ol {
527  margin: 0 0 0 1.5em;
528}
529
530/* --- the list items overriding the ul/ol definition --- */
531div.dokuwiki .li {
532  color: __text__;
533  font-weight: normal;
534}
535
536div.dokuwiki .li_toolbox ul{
537  list-style-image: url(images/check.png);
538}
539
540div.dokuwiki ol ol {
541  list-style: upper-roman;
542}
543
544div.dokuwiki ol ol ol {
545  list-style: lower-alpha;
546}
547
548div.dokuwiki ol ol ol ol {
549  list-style: lower-greek;
550}
551
552div.dokuwiki li.open {
553  list-style-image: url(images/open.gif);
554    /*list-style-type: circle;*/
555}
556
557div.dokuwiki li.closed {
558  list-style-image: url(images/closed.gif);
559    /*list-style-type: disc;*/
560}
561
562div.dokuwiki blockquote {
563  border-left: 2px solid __border__;
564  padding: 0 0 0 0.1875em;
565}
566
567div.dokuwiki pre,
568div.dokuwiki code {
569  font-family: monospace, serif;
570  font-size: 100%;
571}
572
573div.dokuwiki pre {
574  border: 1px dashed __border__;
575  color: __text__;
576  overflow: auto;
577  padding: 0.5em;
578}
579
580/* --- code blocks by indention --- */
581div.dokuwiki pre.pre {
582  background: __background_other__;
583}
584
585/* --- code blocks by code tag --- */
586div.dokuwiki pre.code {
587  background: __background_other__;
588}
589
590/* --- code blocks by file tag --- */
591div.dokuwiki pre.file {
592  background: __background_alt__;
593}
594
595/* --- filenames for file and code blocks --- */
596div.dokuwiki dl.file,
597div.dokuwiki dl.code {
598  margin: 2em 0 2.5em;
599}
600
601div.dokuwiki dl.file dt,
602div.dokuwiki dl.code dt {
603  border: 1px dashed __border__;
604  display: inline;
605  margin: 0 0 0 2em;
606  padding: 0.1em 1em;
607}
608
609div.dokuwiki dl.code dt a,
610div.dokuwiki dl.file dt a {
611  color: __text__;
612}
613
614div.dokuwiki dl.code dt {
615  background: __background_other__;
616  border-bottom: 1px solid __nearly_background_other__;
617}
618
619div.dokuwiki dl.file dt {
620  background: __background_alt__;
621  border-bottom: 1px solid __nearly_background_alt__;
622}
623
624/* --- inline tables --- */
625div.dokuwiki table.inline {
626  background: __background__;
627  border-spacing: 0;
628  border-collapse: collapse;
629}
630
631div.dokuwiki table.inline th {
632  background: __background_alt__;
633  border: 1px solid __border__;
634  padding: 0.1875em;
635}
636
637div.dokuwiki table.inline td {
638  border: 1px solid __border__;
639  padding: 0.1875em;
640}
641
642/* table of contents
643--------------------------------------------- */
644
645div.dokuwiki div.toc {
646  margin: 1em 0 0;
647  text-align: justify;
648  width: 100%;
649}
650
651div.dokuwiki div.toc_none_sidebar {
652  float: right;
653  margin: -1em 0.2em 0 2em;
654  width: 250px;
655}
656
657div.dokuwiki div.tocheader,
658div.dokuwiki div.tocheader a {
659  border-top: 1px solid __border3__;
660  border-right: 2px solid __border2__;
661  border-left: 1px solid __border3__;
662  margin-bottom: 0.3em;
663}
664
665div.dokuwiki span.toc_open,
666div.dokuwiki span.toc_close {
667  border: 0.4em solid transparent;
668  display: block;
669  float: right;
670  margin: 0.4em 0.1875em 0 0;
671}
672
673
674*html .dokuwiki span.toc_open,
675*html .dokuwiki span.toc_close {
676border-color: pink;
677filter: chroma(color=pink);
678}
679
680div.dokuwiki span.toc_open span,
681div.dokuwiki span.toc_close span {
682  display: none;
683}
684
685div.dokuwiki span.toc_open {
686  border-top: 6.4px solid __text__;
687  margin: .4em .2em 0;
688}
689
690div.dokuwiki span.toc_close {
691  border-bottom: 6.4px solid __text__;
692  margin: 0 .2em 0;
693}
694
695div.dokuwiki #toc__inside {
696  background: __background__;
697  border-top: 1px solid __border3__;
698  border-right: 2px solid __border2__;
699  border-bottom: 2px solid __border2__;
700  border-left: 1px solid __border3__;
701  overflow: auto;
702  padding: 0.5em 0 0.7em;
703  text-align: left;
704  width: 100%;
705}
706
707div.dokuwiki ul.toc {
708  line-height: 1.2em;
709  list-style: none none;
710  margin: 0;
711  padding: 0.6em;
712}
713
714div.dokuwiki ul.toc li {
715  background: transparent url(images/tocdot2.gif) 0 0.6em no-repeat;
716  padding-left: 0.4em;
717}
718
719div.dokuwiki ul.toc li.clear {
720  background: none;
721  padding: 0 0 0 0.4em;
722}
723
724div.dokuwiki a.toc:link,
725div.dokuwiki a.toc:visited {
726  color: __existing__;
727}
728
729div.dokuwiki a.toc:hover,
730div.dokuwiki a.toc:active {
731  color: __text__;
732}
733
734/* Diff rendering
735--------------------------------------------- */
736
737div.dokuwiki table.diff {
738  background: __background__;
739  width: 100%;
740}
741
742div.dokuwiki td.diff-blockheader {
743  font-weight: bold;
744}
745
746div.dokuwiki table.diff th {
747  border-bottom: 1px solid __border__;
748  font-size: 110%;
749  font-weight: normal;
750  text-align: left;
751  width: 50%;
752}
753
754div.dokuwiki table.diff th a {
755  font-weight:bold;
756}
757
758div.dokuwiki table.diff th span.user {
759  color: __text__;
760  font-size: 80%;
761}
762
763div.dokuwiki table.diff th span.sum {
764  font-size: 80%;
765  font-weight: bold;
766}
767
768div.dokuwiki table.diff th.minor {
769  font-style: italic;
770}
771
772div.dokuwiki table.diff td {
773  font-family: monospace;
774  font-size: 100%;
775}
776
777div.dokuwiki td.diff-addedline,
778div.dokuwiki span.diff-addedline {
779  background: #dfd;
780}
781
782div.dokuwiki td.diff-deletedline,
783div.dokuwiki span.diff-deletedline {
784  background: #ffb;
785}
786
787div.dokuwiki td.diff-context {
788  background: __background_neu__;
789}
790
791div.dokuwiki table.diff td.diff-addedline strong,
792div.dokuwiki table.diff td.diff-deletedline strong {
793  color: #ff0001; /* W3C-Validiator workaround */
794}
795
796/* footnotes
797--------------------------------------------- */
798
799div.dokuwiki div.footnotes {
800  border-top: 1px solid __border__;
801  clear: both;
802  margin: 1em 0 0;
803  padding: 0 0 0 1em;
804}
805
806div.dokuwiki div.fn {
807  font-size: 90%;
808}
809
810div.dokuwiki a.fn_bot {
811  font-weight: bold;
812}
813
814/* --- insitu-footnotes --- */
815div.insitu-footnote {
816  background: __background_other__;
817  border: 1px solid __border__;
818  font-size: 80%;
819  line-height: 1.2em;
820  max-width: 40%;
821  min-width: 5em;
822  padding: 0.25em;
823  text-align: left;
824}
825
826/* --- overcome IE issue with one line code or file boxes which require h. scrolling --- */
827* html .insitu-footnote pre.code,
828* html .insitu-footnote pre.file {
829  padding-bottom: 18px;
830}
831
832
833/* search result formating
834--------------------------------------------- */
835
836div.dokuwiki .search_result {
837  margin: 0 0 6px;
838  padding: 0 0.625em 0 1.875em;
839}
840
841div.dokuwiki .search_snippet {
842  color: __text_other__;
843  font-size: 12px;
844  margin: 0 0 0 1.25em;
845}
846
847div.dokuwiki .search_sep {
848  color: __text__;
849}
850
851div.dokuwiki .search_hit {
852  background: __highlight__;
853  color: __text__;
854}
855
856div.dokuwiki strong.search_hit {
857  font-weight: normal;
858}
859
860div.dokuwiki div.search_quickresult {
861  border-bottom: 1px dashed __border__;
862  margin: 0 0 0.938em 1.875em;
863  padding: 0 0.625em 0.625em 0;
864}
865
866div.dokuwiki div.search_quickresult h3 {
867  font-size: 1em;
868  font-weight :bold;
869  margin: 0 0 1em;
870}
871
872div.dokuwiki ul.search_quickhits {
873  margin: 0 0 0.5em 1em;
874}
875
876div.dokuwiki ul.search_quickhits li {
877  float: left;
878  margin: 0 1em;
879  width :30%;
880}
881
882div.dokuwiki .section_highlight {
883  background: __background_alt__ !important;
884}
885
886/* Additional
887--------------------------------------------- */
888
889/* --- AJAX quicksearch --- */
890div.dokuwiki div.ajax_qsearch {
891  background: __background_other__;
892  border: 1px solid __border__;
893  display: none;
894  font-size: 80%;
895  line-height: 1.2em;
896  opacity: 0.9;
897  padding: 0.25em;
898  position: absolute;
899  right: 237px;
900  text-align: left;
901  width: 200px;
902}
903
904/* --- Toolbar --- */
905
906button.toolbutton {
907  background: __background__;
908  border: 1px solid __border__;
909  cursor: pointer;
910  margin: 0 0.0625em 0 0;
911  padding: 0;
912}
913
914/* --- nice alphatransparency background except for IE <7 --- */
915html>body button.toolbutton {
916  background: __background__ url(images/buttonshadow.png) repeat-x bottom;
917}
918
919div.picker {
920  background: __background_alt__;
921  border: 1px solid __border__;
922  width: 250px;
923}
924
925div.pk_hl {
926  width: 125px;
927}
928
929button.pickerbutton {
930  background: transparent;
931  border: 0;
932  cursor: pointer;
933  font-size: 80%;
934  margin: 0 0.0625em 0.0625em 0;
935  padding: 0;
936}
937
938/* Image Details
939--------------------------------------------- */
940
941div.dokuwiki div.img_big {
942  float: left;
943  margin: 0 0.5em 0 0;
944}
945
946div.dokuwiki dl.img_tags dt {
947  background: __background_alt__;
948  font-weight: bold;
949}
950
951div.dokuwiki dl.img_tags dd {
952  background: __background_neu__;
953}
954
955div.dokuwiki div.imagemeta {
956  color: __text_neu__;
957  font-size: 70%;
958  line-height: 95%;
959}
960
961div.dokuwiki div.imagemeta img.thumb {
962  float: left;
963  margin: 0 0.1em 0 0;
964}
965