source: documentation/trunk/wiki/templates/greenstone-monobook/static/css/screen.css@ 30321

Last change on this file since 30321 was 30321, checked in by jmt12, 8 years ago

Changing section edit buttons to look more like (less intrusive) media wiki links

File size: 30.1 KB
Line 
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 "monobook" 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 "monobook" 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/eq8zSo>. I followed the main
20 principle described there and simply apply it to the two sources ("starter"
21 template and "monobook" skin).
22 - This way also ensures a painless update, if there are new versions of
23 MediaWiki monobook 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 "monobook" MediaWiki skin and "starter" DokuWiki
31 template. Read the notes above and <http://j.mp/eq8zSo> 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 --------------- */
42html {
43 background-color: #f9f9f9;
44 color: __text__;
45 margin: 0;
46 padding: 0;
47 overflow-x: auto;
48 overflow-y: auto;
49}
50hr {
51 border: 0 none;
52 text-align: center;
53 width: 100%;
54 clear: both;
55}
56pre,
57code,
58samp,
59kbd {
60 font-family: monospace,sans-serif;
61}
62pre {
63 overflow: auto;
64}
65img {
66 border-width: 0;
67 background-color: transparent;
68}
69blockquote {
70 padding: 0 1.25em;
71 border: solid __border__;
72 border-width: 0 0 0 .25em;
73}
74q:before,
75q:after {
76 content: '';
77}
78sub,
79sup {
80 font-size: .8em;
81 line-height: 1;
82}
83sub {
84 vertical-align: sub;
85}
86sup {
87 vertical-align: super;
88}
89
90/* forms */
91form {
92 display: inline;
93 padding: 0;
94}
95label {
96 vertical-align: middle;
97 cursor: pointer;
98}
99input,
100textarea,
101button,
102select,
103optgroup,
104option {
105 font: inherit;
106 color: inherit;
107 /* background-color destroys button look */
108 line-height: 1;
109 margin: 0;
110 vertical-align: middle;
111}
112input[type=text],
113input[type=password],
114textarea {
115 padding: .1em;
116}
117input[type=radio],
118input[type=checkbox],
119input.check {
120 padding: 0;
121}
122input[type=submit],
123input.button,
124button {
125 background-color: transparent;
126 border: 0px solid white;
127 color: #050;
128 cursor: pointer;
129 font-weight: bold;
130 text-transform: lowercase;
131}
132input[disabled],
133button[disabled],
134input[readonly],
135button[readonly] {
136 cursor: auto;
137}
138optgroup {
139 font-style: italic;
140 font-weight: bold;
141}
142option {
143 font-style: normal;
144 font-weight: normal;
145}
146
147/* tables */
148table {
149 border-collapse: collapse;
150 empty-cells: show;
151 border-spacing: 0;
152 border: 1px solid __border__;
153}
154caption {
155 caption-side: top;
156 text-align: left;
157 margin: 0 0 .3em;
158}
159th,
160td {
161 padding: .3em .5em;
162 margin: 0;
163 vertical-align: top;
164 border: 1px solid __border__;
165 text-align: left;
166}
167th {
168 font-weight: bold;
169 background-color: __background_alt__;
170}
171
172/* basic margins and paddings */
173p,
174pre,
175table,
176blockquote,
177fieldset,
178address {
179 margin: 0 0 1.4em 0; /* bottom margin = line-height */
180 padding: 0;
181}
182div {
183 margin: 0;
184 padding: 0;
185}
186
187/* lists */
188li,
189dd {
190 padding: 0;
191 margin: 0 0 0 1.5em;
192}
193dt {
194 font-weight: bold;
195 margin: 0;
196 padding: 0;
197}
198li ul,
199li ol,
200li dl,
201dl ul,
202dl ol,
203dl dl {
204 margin-bottom: 0;
205 padding: 0;
206}
207li li {
208 font-size: 100%;
209}
210ul { list-style: square outside; }
211ol { list-style: decimal outside; }
212ol ol { list-style-type: lower-alpha; }
213ol ol ol { list-style-type: upper-roman; }
214ol ol ol ol { list-style-type: upper-alpha; }
215ol ol ol ol ol { list-style-type: lower-roman; }
216
217/* general classes */
218div.clearer {
219 /* additional to what's already in DokuWiki's lib/styles/all.css: */
220 font-size: 1px;
221 visibility: hidden;
222}
223.a11y {
224 position: absolute;
225 left: -9000px;
226 top: -4000px;
227 width: 0;
228 height: 0;
229 overflow: hidden;
230 display: inline;
231}
232
233/* special pages background: discussion */
234.ns-1 #content,
235.ns-1 #p-cactions li,
236.ns-1 #p-cactions li a {
237 background: #f8fcff;
238}
239
240/* special pages background: media/cite etc. */
241.ns-2 #content,
242.ns-2 #p-cactions li,
243.ns-2 #p-cactions li a,
244.ns-2 #media__manager_table {
245 background: #f3f3ff;
246}
247
248/* bold tabs */
249#p-cactions .selected,
250#ca-edit { /* edit tab should be always bold */
251 font-weight: bold;
252}
253
254/* take care about hiding the bottom border when tab is selected */
255#p-cactions .selected,
256#p-cactions .selected a,
257#p-cactions .selected span {
258 z-index: 3;
259 padding-bottom: 0.17em; /* fix for <= IE7 */
260}
261.ns-0 #p-cactions .selected,
262.ns-0 #p-cactions .selected a,
263.ns-0 #p-cactions .selected span {
264 background-color: __background__;
265}
266
267/* link to current page */
268.dokuwiki span.curid a {
269 /*font-weight: normal;*/
270}
271
272/* internal link, existing */
273.dokuwiki a.wikilink1,
274.dokuwiki a.wikilink1:visited {
275 color: __existing__ !important;
276}
277
278/* missing page red: common */
279a.wikilink2:link,
280a.wikilink2:visited,
281a.wikilink2:hover {
282 color: __missing__ !important;
283}
284
285/* missing page red: tabs */
286#p-cactions li a.wikilink2 {
287 color: __missing__;
288}
289
290
291/* --------------- content styling --------------- */
292
293/* embedded images (styles are already partly set in DokuWiki's lib/styles/all.css) */
294.dokuwiki img.media { }
295.dokuwiki img.medialeft { margin: .5em 1.5em .5em 0; }
296.dokuwiki img.mediaright { margin: .5em 0 .5em 1.5em; }
297.dokuwiki img.mediacenter { margin: .5em auto; }
298
299/* general tags */
300div.dokuwiki p,
301div.dokuwiki blockquote,
302div.dokuwiki table,
303div.dokuwiki pre {
304 margin: 0 0 1.0em 0;
305}
306div.dokuwiki caption {
307 font-family: sans-serif;
308}
309
310/* forms */
311div.dokuwiki textarea.edit {
312 font-family: monospace, serif;
313 /* second generic font fixes problem with font-size, see
314http://meyerweb.com/eric/thoughts/2010/02/12/fixed-monospace-sizing/ */
315 font-size: 14px;
316 color: __text__;
317 background-color: __background__;
318 border: 1px solid __border__;
319 padding: 0.3em 0 0 0.3em;
320 width: 100%;
321 line-height: 17px;
322}
323
324div.dokuwiki legend {
325 font-family: sans-serif;
326 font-weight: normal;
327 background-color: transparent;
328 text-align: left; /* needed for webkit browsers */
329}
330
331/* nice alphatransparency background except for IE <7 */
332html>body div.dokuwiki textarea.edit {
333 background: __background__ url(static/3rd/dokuwiki/inputshadow.png) repeat-x top;
334}
335
336div.dokuwiki input.edit,
337div.dokuwiki select.edit {
338 font-size: 100%;
339 border: 1px solid __border__;
340 color: __text__;
341 background-color: __background__;
342 vertical-align: middle;
343 margin: 1px;
344 padding: 0.20em 0.3em;
345 display: inline;
346 font-weight: normal;
347}
348
349/* nice alphatransparency background except for IE <7 */
350html>body div.dokuwiki input.edit,
351html>body div.dokuwiki select.edit {
352 background: __background__ url(static/3rd/dokuwiki/inputshadow.png) repeat-x top;
353}
354
355div.dokuwiki select.edit {
356 padding: 0.1em 0;
357}
358
359div.dokuwiki input.missing {
360 font-size: 100%;
361 border: 1px solid __border__;
362 color: __text__;
363 background-color: #ffcccc;
364 vertical-align: middle;
365 margin: 1px;
366 padding: 0.20em 0.3em;
367 display: inline;
368}
369
370/* disabled style - not understood by IE */
371div.dokuwiki textarea.edit[disabled],
372div.dokuwiki textarea.edit[readonly],
373div.dokuwiki input.edit[disabled],
374div.dokuwiki input.edit[readonly],
375div.dokuwiki input.button[disabled],
376div.dokuwiki select.edit[disabled] {
377 background-color: __background_neu__!important;
378 color: __text_neu__!important;
379 font-weight: normal;
380}
381
382/* edit form */
383div.dokuwiki div.toolbar,
384div.dokuwiki div#wiki__editbar {
385 margin: 2px 0;
386 text-align: left;
387}
388div.dokuwiki div#size__ctl {
389 float: right;
390 width: 60px;
391 height: 2.7em;
392}
393div.dokuwiki #size__ctl img {
394 cursor: pointer;
395}
396div.dokuwiki div#wiki__editbar div.editButtons {
397 float: left;
398 padding: 0 1.0em 0.7em 0;
399}
400div.dokuwiki div#wiki__editbar div.summary {
401 float: left;
402}
403div.dokuwiki .nowrap {
404 white-space: nowrap;
405}
406div.dokuwiki div#draft__status {
407 float: right;
408 color: __text_alt__;
409}
410
411div.dokuwiki div.license {
412 padding: 0.5em;
413 font-size: 90%;
414 text-align: center;
415}
416
417div.dokuwiki form#dw__editform div.license {
418 clear: left;
419 font-size: 90%;
420}
421
422/* buttons */
423div.dokuwiki input.button,
424div.dokuwiki button.button {
425 border: 1px solid __border__;
426 color: __text__;
427 background-color: __background__;
428 vertical-align: middle;
429 text-decoration: none;
430 font-size: 100%;
431 cursor: pointer;
432 margin: 1px;
433 padding: 0.125em 0.4em;
434 font-weight: normal;
435 line-height: 1.333em;
436 /* line-height: 1em; *//* fix MSIE 6, 7 */
437}
438div.dokuwiki button.toolbutton {
439 height: 20px;
440 width: 24px;
441 padding: 1px 3px;
442 line-height: 16px;
443 text-align: center;
444 height: 22px\9; /* fix MSIE 6, 7, 8 */
445}
446/* nice alphatransparency background except for IE <7 */
447html>body div.dokuwiki input.button,
448html>body div.dokuwiki button.button {
449 background: __background__ url(static/3rd/dokuwiki/buttonshadow.png) repeat-x bottom;
450}
451
452* html div.dokuwiki input.button,
453* html div.dokuwiki button.button {
454 height: 1.8em;
455}
456
457div.dokuwiki div.secedit input.button {
458 border: 1px solid __border__;
459 color: __text__;
460 background-color: __background__;
461 vertical-align: middle;
462 text-decoration: none;
463 margin: 0;
464 padding: 0;
465 font-size: 10px;
466 cursor: pointer;
467 float: right;
468 display: inline;
469}
470
471
472/* links */
473div.dokuwiki a:link,
474div.dokuwiki a:visited {
475 color: #436976;
476 text-decoration: none;
477}
478div.dokuwiki a:hover,
479div.dokuwiki a:active {
480 color: __text__;
481 text-decoration: underline;
482}
483
484/* external link */
485div.dokuwiki a.urlextern {
486 background: transparent url(static/3rd/monobook/external.png) center right no-repeat;
487 padding: 1px 13px 1px 0px;
488 color: #436976;
489 text-decoration: none;
490}
491div.dokuwiki a.urlextern:visited {
492 color: purple;
493}
494
495/* interwiki link */
496div.dokuwiki a.interwiki {
497 color: #436976;
498}
499div.dokuwiki a.interwiki:visited {
500 color: purple;
501}
502
503/* windows share */
504div.dokuwiki a.windows {
505 background: transparent url(static/3rd/dokuwiki/windows.gif) center left no-repeat;
506 color: #436976;
507}
508
509/* email link */
510div.dokuwiki a.mail {
511 background: transparent url(static/3rd/dokuwiki/mail_icon.gif) center left no-repeat;
512 color: #436976;
513}
514
515/* headlines */
516h1,
517h2,
518h3,
519h4,
520h5,
521h6 {
522 font-family: sans-serif;
523 background-color: inherit;
524 padding: 0;
525 clear: left; /* ideally 'both', but problems with toc */
526}
527div#content .dokuwiki h1,
528div#content .dokuwiki h2,
529div#content .dokuwiki h3,
530div#content .dokuwiki h4,
531div#content .dokuwiki h5,
532div#content .dokuwiki h6 {
533 border-bottom: 1px solid #aaa;
534 color: __text__;
535 margin: 0;
536 padding-bottom: 0.17em;
537 padding-top: 0.5em;
538}
539div#content .dokuwiki h1 a,
540div#content .dokuwiki h2 a,
541div#content .dokuwiki h3 a,
542div#content .dokuwiki h4 a,
543div#content .dokuwiki h6 a {
544 color: __text__;
545}
546div#content .dokuwiki h5 a {
547 color: __background__;
548}
549div#content .dokuwiki h1 a:hover,
550div#content .dokuwiki h2 a:hover,
551div#content .dokuwiki h3 a:hover,
552div#content .dokuwiki h4 a:hover,
553div#content .dokuwiki h5 a:hover,
554div#content .dokuwiki h6 a:hover {
555 text-decoration: none;
556}
557div#content .dokuwiki h1 {
558 font-size: 160%;
559}
560div#content .dokuwiki h1,
561div#content .dokuwiki h2 {
562 margin-bottom: 0.6em;
563 font-weight: normal;
564}
565div#content .dokuwiki h3,
566div#content .dokuwiki h4,
567div#content .dokuwiki h5,
568div#content .dokuwiki h6 {
569 font-weight: bold;
570 border-bottom: none;
571 margin-bottom: 0.3em;
572}
573div#content .dokuwiki h3 {
574 font-size: 132%;
575}
576div#content .dokuwiki h4 {
577 font-size: 116%;
578}
579div#content .dokuwiki h5 {
580 font-size: 100%;
581 color: __background__;
582}
583div#content .dokuwiki h6 {
584 font-size: 80%;
585}
586
587/* remove indent from different sections */
588div#content .dokuwiki div.level1,
589div#content .dokuwiki div.level2,
590div#content .dokuwiki div.level3,
591div#content .dokuwiki div.level4,
592div#content .dokuwiki div.level5 {
593 margin-left: 0;
594}
595
596/* lists */
597div.dokuwiki ul {
598 line-height: 1.5em;
599 padding: 0;
600 list-style-type: square;
601 list-style-image: url(static/3rd/monobook/bullet.gif) !important;
602 margin: 0.3em 0 1em 1.5em;
603 color: __text_alt__;
604}
605
606div.dokuwiki ol {
607 line-height: 1.5em;
608 padding: 0;
609 list-style-image: none;
610 margin: 0.3em 0 1em 3.2em;
611 color: __text_alt__;
612 font-weight: bold;
613}
614
615div.dokuwiki li ul,
616div.dokuwiki li ol {
617 margin: 0 0 0 1.5em; /* no bottom gap in between and smaller left margin for nested lists */
618}
619
620div.dokuwiki .li {
621 color: __text__; /* the list items overriding the ul/ol definition */
622 font-weight: normal;
623}
624
625div.dokuwiki ol { list-style-type: decimal; }
626div.dokuwiki ol ol { list-style-type: upper-roman; }
627div.dokuwiki ol ol ol { list-style-type: lower-alpha; }
628div.dokuwiki ol ol ol ol { list-style-type: lower-greek; }
629
630div.dokuwiki li.open {
631 list-style-image: url(static/3rd/dokuwiki/images/open.gif);
632}
633
634div.dokuwiki li.closed {
635 list-style-image: url(static/3rd/dokuwiki/closed.gif);
636}
637
638div#content div.dokuwiki li {
639 margin-left: 0;
640 margin-bottom: 0;
641}
642
643/* quotes */
644div#content .dokuwiki blockquote {
645 border-left: 2px solid __border__;
646 padding-left: 3px;
647 padding-right: 0;
648 margin-left: 0.2em;
649}
650
651/* preformatted stuff, source code */
652.dokuwiki dl.code dt,
653.dokuwiki dl.file dt {
654 background-color: __background_alt__;
655 border: solid __border__;
656 border-width: 1px 1px 0;
657 color: inherit;
658 display: inline;
659 padding: 0 .5em;
660 margin-left: 1em;
661}
662.dokuwiki dl.code dd,
663.dokuwiki dl.file dd {
664 margin: 0;
665}
666div#content .dokuwiki code,
667div#content .dokuwiki pre,
668div#content .dokuwiki pre.code,
669div#content .dokuwiki pre.file,
670div#content .dokuwiki samp,
671div#content .dokuwiki kbd,
672div#content .dokuwiki tt {
673 font-size: 110%;
674 line-height: 1.4em;
675 font-family: monospace;
676 background-color: #f9f9f9;
677 direction: ltr;
678 text-align: left;
679}
680div#content .dokuwiki em.u code { /* fix if background-color hides underlining */
681 text-decoration: underline;
682}
683div#content .dokuwiki pre,
684div#content .dokuwiki pre.code,
685div#content .dokuwiki pre.file {
686 line-height: 1.2em;
687 padding: 0.5em;
688 border-style: dashed;
689 overflow: scroll;
690 width: 800px;
691}
692div#content .dokuwiki dl.file,
693div#content .dokuwiki dl.file dd {
694 margin-left: 0;
695}
696div#content .dokuwiki dl.file dt,
697div#content .dokuwiki dl.code dt {
698 background-color: #f9f9f9;
699 border-bottom: 2px solid #f9f9f9;
700 border-top: 1px dashed __border__;
701 border-left: 1px dashed __border__;
702 border-right: 1px dashed __border__;
703 display: inline;
704 margin-left: 2em;
705 padding: 0.1em 1em;
706}
707div#content .dokuwiki dl.file dt a,
708div#content .dokuwiki dl.code dt a {
709 color: __text__;
710}
711div#content .dokuwiki dl.file dt a.mediafile {
712 padding-top: 1px;
713}
714
715/* "you are here" and "breadcrumbs" */
716.catlinks {
717 margin-bottom: 0.5em;
718}
719.catlinks p {
720 margin: 0.3em 0 !important;
721}
722
723/* tables */
724th,
725td {
726 border: 0;
727}
728td[align="right"],
729th[align="right"] {
730 text-align: right;
731}
732div.dokuwiki table.inline {
733 background-color: __background__;
734}
735div.dokuwiki table.inline th,
736div.dokuwiki table.inline td {
737 border: 1px solid __border__;
738}
739div.dokuwiki table.inline th {
740 background-color: __background_alt__;
741}
742div.dokuwiki table.inline tr:hover td,
743div.dokuwiki table.inline tr:hover th,
744div.dokuwiki table.inline th:hover {
745 background-color: __background_alt__;
746}
747
748/* different stuff */
749#p-cactions #ca-addsection a {
750 padding-left: .4em;
751 padding-right: .4em;
752}
753
754/* customize ajax "matching pagename" searchbox */
755#qsearch__in {
756 width: 10.9em;
757 margin: 0;
758 font-size: 95%;
759}
760#qsearch__out {
761 background-color: #f9f9f9;
762 border: 1px solid __border__;
763 display: none;
764 font-size: 80%;
765 line-height: 1.2em;
766 opacity: 0.9;
767 padding: 4px;
768 text-align: left;
769 position: absolute;
770 left: 150px;
771 z-index: 30000;
772 margin-top: -60px;
773}
774div.dokuwiki div.ajax_qsearch {
775 position: absolute;
776 width: 200px;
777 opacity: 0.9;
778 display: none;
779 font-size: 80%;
780 line-height: 1.2em;
781 border: 1px solid #8cacbb;
782 background-color: #f7f9fa;
783 text-align: left;
784 padding: 4px;
785}
786
787/* offsets to distinguish the tab groups */
788li#ca-talk {
789 margin-right: 1.6em;
790}
791li#ca-watch, li#ca-unwatch, li#ca-varlang-0, li#ca-print {
792 margin-left: 1.6em;
793}
794
795/* section edit buttons */
796.dokuwiki .secedit {
797 margin-top: 0;
798}
799div.secedit input.button{
800 border: 0 none !important;
801 text-transform: lowercase;
802 color: blue !important;
803 background: none 0 !important;
804 vertical-align: middle;
805 text-decoration: none;
806 margin: 0px;
807 padding: 0px;
808 font-size: 10px;
809 cursor: pointer;
810 height: 15px !important;
811 max-height: 15px !important;
812 min-height: 15px !important;
813 float:right;
814}
815div.secedit2 {
816 text-align: right;
817}
818div.secedit2 a {
819 border: 0px;
820 text-transform: lowercase;
821 color: blue;
822 background-color: transparent;
823 vertical-align: middle;
824 text-decoration: none;
825 font-size: 10px;
826 cursor: pointer;
827}
828
829/* personal tools */
830div#column-one #p-personal.portlet .pBody ul {
831 background: transparent none 0 0;
832 line-height: 1.4em !important;
833 list-style-image: none !important;
834 list-style-position: outside;
835 list-style-type: none !important;
836 margin: 0 !important;
837 padding: 0 2em 0 3em !important;
838 text-align: right;
839}
840
841/* footnotes */
842div.dokuwiki div.fn {
843 font-size: 90%;
844}
845
846/* link to footnote inside the text */
847.dokuwiki sup a.fn_top {
848 color: #436976;
849}
850
851/* link to text from footnote */
852.dokuwiki sup a.fn_bot {
853 color: #436976;
854}
855
856/* insitu-footnotes */
857div.insitu-footnote {
858 font-size: 100% !important;
859 padding: 4px 7px;
860 z-index: 3 !important; /* z-index needed, otherwise the footnotes will be rendered below
861 the main content area of monobook */
862}
863
864/* Toolbar */
865button.toolbutton {
866 background-color: __background__;
867 padding: 0px;
868 margin: 0 1px 0 0;
869 border: 1px solid __border__;
870 cursor: pointer;
871}
872
873/* nice alphatransparency background except for IE <7 */
874html>body button.toolbutton {
875 background: __background__ url(static/3rd/dokuwiki/buttonshadow.png) repeat-x bottom;
876}
877
878div.picker {
879 width: 250px;
880 border: 1px solid __border__;
881 background-color: __background_alt__;
882 font-size: 11px;
883 line-height: 13px;
884}
885
886div.pk_hl {
887 width: 125px;
888}
889
890button.pickerbutton {
891 padding: 0px;
892 margin: 0 1px 1px 0;
893 border: 0;
894 background-color: transparent;
895 font-size: 80%;
896 cursor: pointer;
897}
898
899/* gallery plugin compatibilty */
900div.dokuwiki .gallery table,
901div.dokuwiki .gallery td {
902 border: 0 none;
903}
904
905/* bureaucracy plugin compatibilty */
906div.dokuwiki form.bureaucracy__plugin fieldset {
907 text-align: center;
908}
909div.dokuwiki form.bureaucracy__plugin label {
910 width: 95% !important;
911 margin-left: auto;
912 margin-right: auto;
913}
914div.dokuwiki form.bureaucracy__plugin label span,
915div.dokuwiki form.bureaucracy__plugin input.edit,
916div.dokuwiki form.bureaucracy__plugin textarea.edit,
917div.dokuwiki form.bureaucracy__plugin fieldset textarea.edit {
918 text-align: left;
919 margin: auto 5px;
920 float: none !important;
921 width: 97% !important;
922 min-width: 97% !important;
923 max-width: 97% !important;
924}
925
926
927/* --------------- sidebar --------------- */
928div#column-one .portlet .pBody ul {
929 font-size: 95%;
930 line-height: 1.5em;
931 list-style-image: url(static/3rd/monobook/bullet.gif);
932 list-style-type: square;
933 margin: 0.3em 0 0 1.5em;
934 padding: 0;
935}
936div#column-one .portlet .pBody a {
937 background: transparent none no-repeat scroll 0 0;
938 color: #002bb8;
939 text-decoration: none;
940 border-bottom: 0 none !important;
941}
942div#column-one .portlet .pBody a:visited {
943 color: #002bb8;
944}
945div#column-one .portlet .pBody a:hover {
946 text-decoration: underline !important;
947}
948/* translation plugin by Anreas Gohr */
949div#column-one .pBody .dokuwiki .plugin_translation span {
950 display: none;
951}
952div#column-one .pBody .dokuwiki .plugin_translation {
953 padding-right: 0 !important;
954 text-align: left;
955}
956div#column-one .pBody .dokuwiki .plugin_translation,
957div#column-one .pBody .dokuwiki .plugin_translation ul,
958div#column-one .pBody .dokuwiki .plugin_translation li {
959 float: none;
960 margin: 0;
961 padding-right: 0;
962 line-height: 1.5em;
963 font-size: 100%;
964}
965div#column-one .pBody .dokuwiki .plugin_translation ul {
966 list-style-image: url(static/3rd/monobook/bullet.gif);
967 list-style-type: square !important;
968 margin: 0.3em 0 0 1.5em;
969 padding: 0;
970}
971div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink1:link,
972div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink1:hover,
973div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink1:active,
974div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink1:visited,
975div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink2:link,
976div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink2:hover,
977div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink2:active,
978div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink2:visited {
979 background-color: transparent;
980 margin: 0;
981 padding: 0;
982}
983div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink1:before,
984div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink2:before {
985 content: attr(title) " (";
986}
987div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink1:after,
988div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink2:after {
989 content: ") ";
990}
991div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink1 {
992 color: __existing__ !important;
993}
994div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink2 {
995 color: __missing__ !important;
996}
997div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink1:hover {
998 text-decoration: underline;
999}
1000div#column-one .pBody .dokuwiki .plugin_translation ul li a.wikilink2:hover {
1001 text-decoration: underline !important;
1002}
1003div#column-one .pBody .dokuwiki .plugin_translation select {
1004 width: 90%;
1005 margin: auto !important;
1006 text-align: left;
1007}
1008div#column-one .pBody .dokuwiki .plugin_translation option,
1009div#column-one .pBody .dokuwiki .plugin_translation option.wikilink1,
1010div#column-one .pBody .dokuwiki .plugin_translation option.wikilink2 {
1011 padding: auto 5px !important;
1012 text-align: left;
1013}
1014
1015
1016/* --------------- Table of contents (TOC) --------------- */
1017div.dokuwiki div.toc {
1018 margin: 1.2em 0 0 2em;
1019 float: right;
1020 width: 200px;
1021 font-size: 80%;
1022 clear: both;
1023}
1024
1025div.dokuwiki div.tocheader {
1026 border: 1px solid __border__;
1027 background-color: __background_alt__;
1028 text-align: left;
1029 font-weight: bold;
1030 padding: 3px;
1031 margin-bottom: 2px;
1032}
1033
1034div.dokuwiki span.toc_open,
1035div.dokuwiki span.toc_close {
1036 border: 0.4em solid __background_alt__;
1037 float: right;
1038 display: block;
1039 margin: 0.4em 3px 0 0;
1040}
1041
1042div.dokuwiki span.toc_open span,
1043div.dokuwiki span.toc_close span {
1044 display: none;
1045}
1046
1047div.dokuwiki span.toc_open {
1048 margin-top: 0.4em;
1049 border-top: 0.4em solid __text__;
1050}
1051
1052div.dokuwiki span.toc_close {
1053 margin-top: 0;
1054 border-bottom: 0.4em solid __text__;
1055}
1056
1057div.dokuwiki #toc__inside {
1058 border: 1px solid __border__;
1059 background-color: __background__;
1060 text-align: left;
1061 padding: 0.5em 0 0.7em 0;
1062}
1063
1064div.dokuwiki ul.toc {
1065 list-style-type: none;
1066 list-style-image: none;
1067 line-height: 1.2em;
1068 padding: 0 !important;
1069 margin: 0.3em 0 0 1.5em !important;
1070}
1071
1072div.dokuwiki ul.toc li {
1073 list-style-image: none;
1074 list-style-type: none;
1075 background: transparent url(static/3rd/dokuwiki/tocdot2.gif) 0 0.6em no-repeat;
1076 padding-left: 0.4em !important;
1077 margin-bottom: 0.1em !important;
1078}
1079
1080div.dokuwiki ul.toc li.clear {
1081 background-image: none;
1082 padding-left: 0.4em;
1083}
1084
1085div.dokuwiki a.toc:link,
1086div.dokuwiki a.toc:visited {
1087 color: #436976;
1088}
1089
1090div.dokuwiki a.toc:hover,
1091div.dokuwiki a.toc:active {
1092 color: __text__;
1093}
1094
1095
1096/* --------------- admin menu --------------- */
1097/* "remember me" checkbox, login */
1098div.dokuwiki form#dw__login label.simple {
1099 text-align: center;
1100 padding-bottom: 0.4em;
1101}
1102/* main menu */
1103.dokuwiki ul.admin_tasks li {
1104 background: transparent none no-repeat scroll 0 0;
1105 list-style-type: none;
1106 list-style-image: none;
1107 margin-bottom: 1em !important;
1108}
1109.dokuwiki ul.admin_tasks li a {
1110 font-weight: bold;
1111}
1112.picker {
1113 z-index: 3; /* z-index needed, otherwise the pull-down menus will be rendered
1114 below the main content area of monobook */
1115}
1116/* acl tree */
1117#acl__tree li {
1118 list-style-image: none;
1119 list-style-type: none;
1120}
1121
1122
1123/* --------------- media manager popup --------------- */
1124html.popup {
1125 background-color: #fff;
1126}
1127html.popup body {
1128 font: 13px/17px sans-serif;
1129 background-image: none;
1130 background-color: #fff;
1131}
1132html.popup #media__manager {
1133 min-height: 465px;
1134}
1135* html.popup #media__manager {
1136 height: 465px; /* fix MSIE 6 */
1137}
1138html.popup #media__manager h1,
1139html.popup #media__manager h2,
1140html.popup #media__popup h1,
1141html.popup #media__popup h2 {
1142 font-size: 1em !important;
1143 line-height: 1em !important;
1144 font-weight: bold !important;
1145}
1146html.popup #media__opts {
1147 padding-left: 1em;
1148 margin-bottom: 0.5em;
1149}
1150html.popup #media__opts input {
1151 float: left;
1152 display: block;
1153 margin-top: 4px;
1154 position: absolute;
1155}
1156*+html.popup #media__opts input,
1157* html.popup #media__opts input {
1158 position: static;
1159}
1160html.popup #media__opts label {
1161 display: block;
1162 float: left;
1163 margin-left: 20px;
1164 margin-bottom: 4px;
1165}
1166*+html.popup #media__opts label,
1167* html.popup #media__opts label {
1168 margin-left: 10px;
1169}
1170html.popup #media__opts br {
1171 clear: left;
1172}
1173
1174
1175/* --------------- media manager page --------------- */
1176#mediamanager__page h2,
1177#mediamanager__page h3 {
1178 font-size: 1em !important;
1179 line-height: 1.5em !important;
1180 font-weight: normal !important;
1181 padding: 3px 10px !important;
1182}
1183#mediamanager__page div.namespaces h2 {
1184 margin-bottom: 0;
1185 border-bottom: 0;
1186}
1187#mediamanager__page div.namespaces div.panelHeader {
1188 padding-top: 11px;
1189}
1190#mediamanager__page h3,
1191#mediamanager__page ul.tabs li {
1192 margin: 0 !important;
1193 padding: 0 !important;
1194}
1195#mediamanager__page .panelHeader ul {
1196 list-style-image: none !important;
1197}
1198#mediamanager__page .panelHeader ul .ui-buttonset {
1199 font-size: 12px;
1200}
1201#mediamanager__page .panelHeader ul li.ui-buttonset {
1202 background-position: 3px 0;
1203 padding-bottom: 3px;
1204}
1205#mediamanager__page .panelHeader div.no input.button {
1206 padding: 1px;
1207 line-height: 1em;
1208}
1209
1210
1211/* --------------- link wizard --------------- */
1212#link__wiz {
1213 text-align: center;
1214}
1215#link__wiz_result div.even {
1216 background-color: #f5f5f5;
1217}
1218
1219
1220/* --------------- footer --------------- */
1221/* default copyright notice layout */
1222div#footer li#copyright .license {
1223 font-size: 100%;
1224 padding: 0;
1225}
1226div#footer li#copyright .license a.urlextern {
1227 margin-left: 0.4em;
1228}
1229
1230
1231/* --------------- search result formating --------------- */
1232div.dokuwiki .search_result {
1233 margin-bottom: 6px;
1234 padding: 0 10px 0 30px;
1235}
1236
1237div.dokuwiki .search_snippet {
1238 font-size: 12px;
1239 margin-left: 20px;
1240}
1241
1242div.dokuwiki .search_sep {
1243 color: __text__;
1244}
1245
1246div.dokuwiki .search_hit {
1247 color: __text__;
1248 background-color: __highlight__;
1249}
1250div.dokuwiki strong.search_hit {
1251 font-weight: normal;
1252}
1253
1254div.dokuwiki div.search_quickresult {
1255 margin: 0 0 15px 30px;
1256 padding: 0 10px 10px 0;
1257 border-bottom: 1px dashed __border__;
1258}
1259div.dokuwiki div.search_quickresult h3 {
1260 margin: 0 0 1.0em 0;
1261 font-size: 1em;
1262 font-weight: bold;
1263}
1264
1265div.dokuwiki ul.search_quickhits {
1266 margin: 0 0 0.5em 1.0em;
1267}
1268
1269div.dokuwiki ul.search_quickhits li {
1270 margin: 0 1.0em 0 1.0em;
1271 float: left;
1272 width: 30%;
1273}
1274
1275div.dokuwiki .section_highlight {
1276 background-color: __background_alt__ !important;
1277}
1278
1279
1280/* --------------- JS popup ----------------- */
1281.JSpopup {
1282 background-color: __background__;
1283 color: __text__;
1284 border: 1px solid __border__;
1285 line-height: 1.2;
1286 padding: 0 .2em;
1287}
1288.JSpopup ul,
1289.JSpopup ol {
1290 padding-left: 0;
1291}
1292
1293
1294/* --------------- diff view ----------------- */
1295.dokuwiki table.diff td {
1296 font-size: 12px;
1297 line-height: 17px;
1298}
1299.dokuwiki table.diff th {
1300 font-size: 12px;
1301}
1302.dokuwiki table.diff td.diff-addedline,
1303.dokuwiki table.diff td.diff-deletedline,
1304.dokuwiki table.diff td.diff-context {
1305 padding-left: 2px;
1306 padding-right: 2px;
1307}
1308
1309
1310/******************************************************************************
1311 ********************* Browser Hacks and corrections **************************
1312 ******************************************************************************/
1313/* MSIE 7: renders the anchor in headlines in two lines?! */
1314*:first-child+html div#content .dokuwiki h1 a,
1315*:first-child+html div#content .dokuwiki h2 a,
1316*:first-child+html div#content .dokuwiki h3 a {
1317 display: inline-block;
1318}
1319*:first-child+html div#content .dokuwiki h1 a {
1320 padding-bottom: 2px;
1321}
1322*:first-child+html div#content .dokuwiki h2 a,
1323*:first-child+html div#content .dokuwiki h3 a {
1324 padding-bottom: 1px;
1325}
1326/* MSIE 7: media manager */
1327*:first-child+html #mediamanager__page .panelContent li {
1328 list-style: none !important;
1329 list-style-image: none !important;
1330}
1331*:first-child+html #mediamanager__page .panelContent ul.thumbs dl {
1332 margin-left: 0;
1333}
1334/* MSIE: fix textarea in admin menu (incl. jumping bug MSIE8) */
1335textarea,
1336.dokuwiki #dw__editform textarea.edit {
1337 /* fix scrollbar flickers in IE8 standards mode, see
1338 http://j.mp/bHExde and http://j.mp/ad7Abj for details */
1339 width: 450px\9;
1340 max-width: 100%\9;
1341 min-width: 100%\9;
1342 /* overwrite original monobook with fixes for IE6/7 */
1343 /*width: 100% !important;*/
1344 border: auto;
1345}
1346/* admin menu icons: MSIE 6/7 */
1347.dokuwiki ul.admin_tasks li div.li {
1348 /*font-weight: bold;*/
1349 /*border-left: 1px dashed __background__;*/ /* invisible border triggers IE to render the stuff */
1350}
1351
1352div.tab {
1353 margin-top:-1px;
1354}
Note: See TracBrowser for help on using the repository browser.