source: documentation/trunk/packages/dokuwiki-2011-05-25a/lib/tpl/greenstone/design.css@ 25027

Last change on this file since 25027 was 25027, checked in by jmt12, 12 years ago

Adding the packages directory, and within it a configured version of dokuwiki all ready to run

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