]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/phpwiki.css
font-size:smaller moved to CSS
[SourceForge/phpwiki.git] / themes / default / phpwiki.css
1 /**
2  * $Id$
3  *
4  * This incarnation of this stylesheet is a complete rewrite from the
5  * ground up.
6  *
7  * Mozilla's "DOM Inspector" Sidebar was an invaluable troubleshooting
8  * tool for mapping the more complex CSS node selectors, such as those
9  * used to reference the various CalendarPlugin elements.
10  */
11
12 /**
13  * General
14  */ 
15 img { border: 0ex; }
16
17 form { margin: 0ex; }
18
19 table {
20   border-spacing: 1px;
21   /* For Mozilla */
22   empty-cells: show;
23 }
24
25 caption {
26   caption-side: top;
27   text-align: left;
28   margin-bottom: .5ex;
29   /* Allow the caption to extend to the full page width
30      Mac ie5.1 ignores this*/
31   width: 100%;
32 }
33
34
35 /**
36  * Wiki
37  */
38 body {
39   /* ivory #ffe #fffff0*/
40   background: #fffff0;
41   font-family: Arial, Helvetica, sans-serif;
42   font-size: 85%; /* The default is too large. But enlarge monospace below */
43   margin: 1.5ex 1em;
44 }
45
46 div.wikitext hr { height: 1px; }
47
48 div.wikitext pre { font-family: monospace; }
49
50
51 /**
52  * PageTypes
53  */
54 /* Main wiki text box */
55 div.wikitext {
56   margin-top:    1ex;
57   margin-bottom: 0.5ex;
58   background-color: white;
59   /* Netscape 4 requires this 1px border.
60      Without it, the paper borders below cause
61      the white background to disappear. */
62   border: 1px black solid;
63   /* "paper" borders */
64   border-top:  1px #e8e6df solid;
65   border-left: 1px #e8e6df solid;
66   border-bottom: 1px #d2d2d2 solid;
67   border-right:  1px #b2b2b2 solid;
68   padding-left:  0.8em; 
69   padding-right: 0.8em;
70   padding-top:    0.5ex;
71   padding-bottom: 0.5ex;
72   /*This breaks Netscape 4: (display does not go full width).
73    * width: auto;
74    */
75   clear: both;
76 }
77 /* for the login template */
78 div#browse  {
79   margin-top:    1px;
80   margin-bottom: 0.5px;
81   /*background: #dddddd;*/
82 }
83 input#inp-openid {
84   background:  url('images/openid.png') bottom left no-repeat;
85   background-repeat: no-repeat;
86   padding-left: 18px !important;
87 }
88
89 /* .interwiki-map thead td { text-decoration: underline; } */
90
91 /*
92 ** RecentChanges
93 */
94 .pageinfo-majoredit { 
95         font-weight: bold;
96 }
97 .wiki-summary {
98         font-size: 94%;
99         font-style: italic;
100 }
101
102 /* Mozilla RecentChanges Sidebar */
103 body.sidebar {
104   font-size: smaller;
105   margin: 0.5em;
106 }
107 body.sidebar div.wikitext {
108   padding: 0.5em;
109 }
110 body.sidebar div.wikitext ul { padding-left: 1em; }
111 body.sidebar h2 { margin-top: 0; }
112
113
114 /**
115  * Wiki Forms
116  * 
117  * The div inside the wikiadmin upload form does not
118  * have a class yet, so it must be referenced indirectly
119  */
120 div.wikiaction { background-color: #eee; }
121 /* div.wikiadmin { background-color: #fee; } */
122 form.wikiadmin div { background-color: #fee; }
123 form.wikiformrich { background-color: #eee; }
124
125 /**
126  * Link styles
127  */
128 .wiki, .named-wiki {
129   text-decoration: none;
130   /* font-weight: normal; */
131   font-weight: bold;
132 }
133 .wiki relation, .named-wiki relation, .wiki attribute, .named-wiki attribute {
134   font-style: oblique;
135   /* font-weight: normal; */
136   font-weight: bold;
137 }
138
139 span.relation-symbol {
140     font-weight: bold;
141     font-family: monospace;
142     letter-spacing: 0.1em;
143 }
144
145 /* Action buttons */
146 a.wikiaction, a.wikiadmin, a.wiki-rc-action, a.wikiunsafe,
147 input.wikiaction, input.button, input.wikiadmin {
148     text-decoration: none;
149     font-family: Arial, Helvetica, sans-serif;
150     /* don't wrap text buttons */
151     white-space: nowrap;
152     /* font-size: inherit; */
153 }
154
155 a.wikiaction, a.wikiaction:visited, input.wikiaction, input.button { 
156     background-color: #ddd; 
157 }
158
159 .wikiunsafe { background-color: #fcc; }
160
161 a.wikiadmin, a.wikiadmin:visited, input.wikiadmin  { 
162     background-color: #fdd; 
163 }
164
165 /* Unknown links */
166 .wikiunknown, .named-wikiunknown {
167   font-weight: normal;
168   font-size: 100%;
169 }
170
171 /* QuestionMark #600 */
172 .wikiunknown a, .named-wikiunknown a {
173   color: #447;
174   background-color: #eee;
175   text-decoration: none;
176   font-weight: normal;
177   font-size: smaller;
178 }
179
180 /* Backlinks */
181 .backlinks {
182   text-decoration: underline;
183   color: #006;
184 }
185 h1 .backlinks { text-decoration: underline; }
186
187 /* Interwiki links */
188 /* .wikipage  { font-weight: bold; } */
189 .wikipage  { font-weight: normal; }
190 .interwiki { text-decoration: none; }
191 .interwiki, i.interwiki .wikipage, em .interwiki .wikipage { font-style: oblique; }
192 .interwiki .wikipage, i .interwiki, em .interwiki { font-style: normal; }
193
194 /* image buttons */
195 a.wikibutton, a.wikibutton:visited, input.wikibutton  { 
196     background-color: white; 
197 }
198
199 /**
200  * headings: Georgia
201  */
202 h1, h2, h3, h4, h5, h6 { font-family: Arial, Helvetica, sans-serif; }
203
204 h1 { margin: 0; font-size: 140% }
205
206
207 /**
208  * Tables
209  */
210 table, td { font-family: Arial, Helvetica, sans-serif; }
211 caption { font-family: Arial, Helvetica, sans-serif; }
212 .pagelist { 
213   font-size: smaller;
214 }
215 .pagelist thead td {
216   background: #e8e8e8;
217   text-decoration: none;
218   font-weight: bold;
219 }
220 .pagelist thead td u { text-decoration: none; }
221 .pagelist tr.evenrow { background: #eee; }
222 .pagelist tr.oddrow  { background: white; }
223 th.gridbutton {
224   background-color: ThreedLightShadow;
225   color: black;
226   font-family: Tahoma, Arial, Helvetica, sans-serif;
227   font-size: small;
228   font-weight: normal;
229   /*font-style: menu;*/
230   white-space: nowrap;
231   margin: 5px 0px;
232   max-height: 24px;
233   padding: 5px 0px 5px 0px;
234   border-width: 1px;
235   border-style: solid;
236   border-color: ThreedHighlight ThreedDarkShadow ThreedDarkShadow ThreedHighlight;
237 }
238 input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton {
239   text-decoration: none;
240   font-size: small;
241   font-weight: normal;
242   /*font-style: menu;*/
243   font-family: Tahoma, sans-serif, Arial, Helvetica;
244   background-color: ThreedLightShadow;
245   color: black;
246 }
247
248
249 /**
250  * Toolbar
251  */
252 .toolbar, input.button, #signin { font-family: Arial, Helvetica, sans-serif; }
253
254 .toolbar {
255   padding: 0;
256   margin:  0;
257 }
258 .edit-toolbar {
259   padding: 0;
260   margin:  0;
261 }
262 .edit-toolbar img, .edit-toolbar input {
263   background-color: #fff;
264   border: 1px solid ButtonFace;
265 }
266
267 #navbuttons {
268   padding-right: 4em; /* wrap around logo */
269   padding-bottom: 1ex; /* space for h1 */
270 }
271 .editdate {
272   font-family: Arial, Helvetica, sans-serif;
273   margin: 0;
274   padding: 0;
275   padding-top: 0.25ex;
276 }
277 /*
278 div#logo {
279   float: right;
280 }
281 */
282 #logo img {
283   float: right;
284   /* Netscape 4 requires this 1px border.
285      Without it, the paper borders below cause
286      the white background to disappear. */
287   border: 1px black solid;
288   /* "paper" borders */
289   border-top:  1px #e8e6df solid;
290   border-left: 1px #e8e6df solid;
291   border-bottom: 1px #d2d2d2 solid;
292   border-right:  1px #b2b2b2 solid;
293 }
294
295 /**
296  * Edit Page & View Source
297  */
298
299 /* Make the textarea the full page width */
300 textarea.wikiedit {
301   width: 100%;
302   margin-bottom: 0.5ex;
303   margin-top:    0.5ex;
304   padding: 2px;
305 }
306
307 #editarea-size {
308   margin-top: 1ex;
309   text-align: right;
310   font-size: smaller;
311 }
312 #search-replace {
313   margin-top: 1ex;
314   text-align: left;
315   font-size: smaller;
316 }
317 #toolbar { padding:0px; }
318
319 /**
320  * Search
321  */
322 #searchholder { display: inline; }
323
324 /**
325  * Search Results
326  */
327 .search-context { background: white; font-style: oblique; }
328 .search-term {
329   background: yellow;
330   font-weight: normal;
331 }
332 #LSResult {
333   position: absolute;
334   text-align: left;
335   display: none;
336   z-index: 100;
337   background-color: white;
338   border: 1px solid #d0d0d0; 
339   font-size: 9px;
340   overflow: hidden;
341 }
342 #LSHighlight {
343   background-color: #f08000;
344 }
345 #LSResult .evenrow {
346   background-color: #f0f0f0;
347
348 #LSREsult .oddrow {
349
350 .LSEnd {
351   text-align: right;
352 }
353 .LSRow:hover {
354   background-color: white;
355 }
356 .LSRow {
357   padding: 1px;
358
359 ul.LSRes {
360   margin: 0px;
361   padding: 0px;
362 }
363 li.LSRow {
364   margin: 0px;
365   list-style-image: none;
366 }
367
368 /* IncludePage plugin */
369 .transclusion-title {
370   text-align: right;
371   font-style: oblique;
372   font-size:  smaller;
373   text-decoration: underline;
374   margin-bottom: 0.25ex;
375   margin-right:  0.25em;
376
377 .transclusion, .wiki-edithelp {
378   font-size: smaller;
379 }
380 .transclusion {
381   border: 1px solid gray;
382   padding-left:  0.8em; 
383   padding-right: 0.8em; 
384   padding-top:     0px;
385   padding-bottom:  0px;
386   margin-left:   0.25em;
387   margin-right:  0.25em;
388   margin-bottom: 0.1ex;
389 }
390 .wiki-edithelp {
391   background: white;
392   border: medium solid #fff8dc; /* darker ivory */
393   padding-left:  0.5em;
394   padding-right: 0.5em;
395   padding-top:    0.75ex;
396   padding-bottom: 0.75ex;
397   margin-left:  0;
398   margin-right: 0;
399   margin-top: 1ex;
400   margin-bottom: 1ex;
401 }
402 .wiki-edithelp .wiki {
403   /* color: #5454ff;*/
404 }
405 .wiki-edithelp p {
406   font-family: Arial, Helvetica, sans-serif;
407   padding-left:  0.5em;
408   padding-right: 0.5em;
409   padding-top:    0.5ex;
410   padding-bottom: 0.5ex;
411   margin: 0;
412 }
413
414
415 /**
416  * Calendar plugin
417  */
418 table.cal {
419   border: 1px outset gray;
420   background: white;
421   margin: 0.5ex 0.5em;
422   padding: 1px;
423   /* For Mozilla */
424   empty-cells: hide;
425
426
427 /* cells */
428 table.cal td {
429   background: white;
430   text-align: right;
431
432
433 /* Month-name header */
434 table.cal-header { font-size: larger; }
435 table.cal-header tr, table.cal-header td { text-align: center; }
436 .cal-arrow {
437   font-weight: bold;
438   text-decoration: none;
439 }
440
441 /* Day-names header */
442 table.cal tbody tr .cal-dayname {  }
443 .cal-dayname td {
444   text-align: center;
445   font-size: smaller;
446   text-decoration: underline;
447 }
448
449 /* Individual days */
450 a.cal-hide { text-decoration: none; }
451
452 /* Today */
453  /* cell */
454 table.cal td.cal-today {
455   margin: 1px;
456   border: 1px solid gray;
457 }
458  /* text */
459 table.cal td.cal-today a.cal-hide {  }
460
461 /**
462  * Diff Output
463  */
464 /* main box */
465 .diff {
466   margin-top:    1ex;
467   margin-bottom: 0.5ex;
468   background: white;
469   /* Netscape 4 requires this 1px border.
470      Without it, the paper borders below cause
471      the white background to disappear. */
472   border: 1px #ccc solid;
473   color: black;
474   border-top: 1px solid #494f5d;
475   border-left:  1px solid #494f5d;
476   border-bottom:  1px solid #c6d2de;
477   border-right: 1px solid #c6d2de;
478   padding-top:    1px;
479   padding-bottom: 1px;
480   padding-left:  .125em;
481   padding-right: .125em;
482   padding: 0;
483   /* "paper" borders */
484   /*border-top: 2px #d2d2d2 solid;
485   border-left:  2px #b2b2b2 solid;
486   border-bottom:  2px #e8e6df solid;
487   border-right: 2px #e8e6df solid;*/
488 /*  padding-left:  0em; 
489   padding-bottom: 0ex;*/
490 /*  border-style: inset;*/
491   /*This breaks Netscape 4: (display does not go full width).
492    * width: auto;
493    */
494   /* I'm not sure what the intent of this was, but it's
495    *  not valid CSS: */
496   /* display: editarea; */
497   clear: both;
498 }
499 .diff .block {
500   background: #ddd;
501   padding-left: 1em;
502   /* for NS4 */
503   /*border: none;*/
504 }
505
506 /* individual blocks */
507 .diff .context {
508   background: white;
509   /* for NS4 */
510   border: none;
511 }
512 /* entire difftextblock */
513 .difftext {
514   margin-top:    0;
515   margin-bottom: 0;
516   background: white;
517   /* Netscape 4 requires this 1px border.
518      Without it, the paper borders below cause
519      the white background to disappear. */
520   border: 1px black solid;
521   /* "paper" borders */
522   border-top:  1px #e8e6df solid;
523   border-left: 1px #e8e6df solid;
524   border-bottom: 1px #d2d2d2 solid;
525   border-right:  1px #b2b2b2 solid;
526   padding-left:  0em; 
527   padding-right: 0em;
528   padding-top:    0ex;
529   padding-bottom: 0ex;
530   /*This breaks Netscape 4: (display does not go full width).
531    * width: auto;
532    */
533   clear: both;
534 }
535 /* + - line prefix */
536 .diff .block tt {
537   font-weight: normal;
538   font-family: monospace;
539   color: black;
540   /* for NS4 */
541   margin-left: 0;
542   border: none;
543 }
544 /* changed words */
545 .diff del, .diff ins {
546   font-weight: bold;
547   text-decoration: none;
548 }
549
550 /* blocks containing deleted or added words */
551 .diff .original, .diff .deleted,
552 .diff .final, .diff .added {
553   background: white;
554 }
555 /* blocks containing deleted words */
556 .diff .original, .diff .deleted {
557   background: #fcc;
558   /* for NS4 */
559   border: none;
560 }
561 /* blocks containing added words */
562 .diff .final, .diff .added {
563   background: #cfc;
564   /* for NS4 */
565   border: none;
566 }
567
568 /* These don't work in NS4 -- it completely ignores <del> and <ins>. */
569 /* deleted words */
570 .diff del { background: #f99; }
571 /* added words */
572 .diff ins { background: #9f9; }
573
574
575 /**
576  * PageHistory, Info
577  */
578 td.pageinfo { font-weight: bold; }
579 .pageinfo-minoredit, .pageinfo-authorid {
580   font-size: smaller;
581   font-style: oblique;
582 }
583
584
585 /**
586  * Other
587  */
588 .printer, .no-css { display: none; }
589
590 /* PHP Warnings */
591 div.errors {
592   color: black;
593   background: #eee;
594   margin-top:    1em;
595   margin-bottom: 1em;
596   padding-left:  0.8em; 
597   padding-right: 0.8em; 
598   padding-top:    0.8ex;
599   padding-bottom: 0;
600   border: medium solid red;
601   clear: both;
602 }
603 h4.errors {
604   color: red;
605   margin:  0;
606   padding: 0;
607   text-decoration: underline;
608 }
609 div.warning {
610   color: black;
611   background: #eee;
612   margin-top:    1em;
613   margin-bottom: 1em;
614   padding-left:  0.8em; 
615   padding-right: 0.8em; 
616   padding-top:    0.8ex;
617   padding-bottom: 0;
618   border: thin solid blue;
619   clear: both;
620 }
621 .error { font-family: monospace; font-size: 120%; }
622 .error ul { font-family: monospace; }
623
624 /* Debug */
625 .debug {
626   color: black;
627   background: white;
628   font-family: monospace;
629   font-size: smaller;
630   margin: 1ex 0;
631   padding: 0.5ex 0.5em;
632   border: medium solid #fff8dc; /* darker ivory */
633 }
634
635 /* Hints */
636 .hint {
637   color: black;
638   background: #eeeeee;
639    /* font-size: smaller; */
640   font-style: italic;
641   margin-left: 3em;
642   padding: 0.5ex 0.5em;
643   border: thin solid #aaaaaa;
644 }
645 span.hint {
646   padding: 0;
647 }
648
649 /* Disabled Plugins */
650 .disabled-plugin
651 {
652   clear: both;
653   margin: 1ex 0;
654   padding: 0;
655 }
656 .disabled-plugin .title {
657   color: #400;
658   background-color: inherit;
659   font-size: x-small;
660   text-align: right;
661   padding: 0 0.5em;
662 }
663 .disabled-plugin pre {
664   color: black;
665   background: #ddd;
666   margin: 0;
667   padding: 0.3ex 0.5em;
668 }
669
670 /* "(Redirected from ...)" message. */
671 span.redirectfrom {
672   font-size: small;
673   font-style: oblique;
674   font-weight: normal;
675   padding-left: 1em;
676 }
677
678 /*
679  * "DL tables"
680  */
681 .wiki-dl-table {
682   border-collapse: collapse;
683   border: 2px #444 solid;
684 }
685 .wiki-dl-table tr {
686   border-top: 2px #444 solid;
687   border-bottom: 2px #444 solid;
688   border-left: none; 
689   border-right: none; 
690 }
691 .wiki-dl-table th,
692 .wiki-dl-table td {
693   padding: 0.25em 0.5em;
694 }
695 .wiki-dl-table th {
696   vertical-align: top;
697   text-align: right;
698   border-right: 1px #444 solid;
699   border-left: none;
700   border-top: none;
701   border-bottom: none;
702 }
703 .wiki-dl-table td {
704   border: none;
705 }
706
707 /*
708  * "E-mail" style blockquote
709  */
710 blockquote.mail-style-quote {
711   border-left: medium #284 solid;
712   padding-left: 1em;
713   margin-left: 0;
714   margin-right: 0;
715 }
716 .mail-style-quote blockquote.mail-style-quote {
717   margin-left: -0.6em;
718 }
719
720
721 /*
722  * wikiblog
723  */
724 .floatleft { float: left; }
725 .floatright { float: right; }
726
727 div.wikiblog {
728   /* border: thin black solid; */
729   margin: 1ex 2em;
730   padding: 0 0;
731 }
732 div.wikiblog > div {
733   margin: 0 0;
734   padding: 0.5ex 0.5em;
735 }
736 div.wikiblog-header {
737   /* background-color: #ccf; */
738 }
739 div.wikiblog > div.wikiblog-footer {
740   /* background-color: #eee; */
741   padding: 0.2ex 0.5em;
742 }
743 h3.wikiblog-summary {
744   font-size: medium;
745   font-weight: bold;
746   margin: 0 0 1ex 0;
747 }
748
749 div.wikiblog.wikiblog-form {
750   /* background-color: #eee; */
751 }
752
753 table.wikiblog-form {
754   width: auto;
755   border-collapse: collapse;
756   margin: 0.25em 0;
757 }
758 .wikiblog-form caption {
759   /* background-color: #ccf; */
760   caption-side: top;
761   font-weight: bold;
762   text-align: left;
763   padding: 0.5ex 0.5em;
764 }
765 .wikiblog-form th {
766   vertical-align: top;
767   text-align: right;
768   padding: 0 0 0.3em 0.5em;
769 }
770 .wikiblog-form td {
771   padding: 0.25em 0.5em;
772 }
773 .wikiblog-form td.submit-button {
774   padding: 0;
775 }
776 .wikiblog-form input[type=text],
777 .wikiblog-form textarea {
778   margin: 0 0;
779   width: 100%;
780 }
781 div.wikicomment div.wikicomment-footer {
782   padding: 0.2ex 0.5em;
783 }
784 div.wikicomment div.wikicomment-footer named-wiki {
785   font-size: small;
786 }
787 table.interwiki-map {
788   margin: 1em 2em;
789 }
790 .interwiki-map th {
791   text-decoration: underline;
792   text-align: left;
793   padding-left: 1em;
794 }
795 .interwiki-map td.interwiki-url {
796   padding-left: 2em;
797 }
798 .interwiki-map th.interwiki-url {
799   padding-left: 3em;
800 }
801
802 .dialog {
803   background-color: #cdf;
804   color: black;
805   margin: 2em auto 2em auto;
806   border: thin black solid;
807   width: 50%;
808 }
809 .dialog h1, .dialog p, .dialog div {
810   text-align: center;
811 }
812 .dialog h1 {
813   font-size: large;
814   margin: 0.5em 0 1em 0;
815 }
816 .dialog div.message {
817   background-color: white;
818   color: black;
819   color: black;
820   margin: 0 1em;
821   padding: 0.5em 0.5em;
822 }
823 .dialog p.buttons {
824   margin: 1em 0 0.5em 0;
825 }
826
827
828 .clear-floats {
829   clear: both;
830 }
831
832
833 /* postnuke css:*/
834 .gensmall{font-size:10px}
835 .genmed{font-size:11px}
836 td.cat{font-weight:bold;letter-spacing:1px;color:#000000;background: url(./images/cellpic1.png);height:27px}
837 /* Main table cell colours and backgrounds */
838 td.row1{background:#eaedf4;color:#000000}
839 td.row2{background:#d9e2ec;color:#000000}
840 td.row3{background:#cad9ea;color:#000000}
841 td.spacerow{background:#cad9ea;color:#000000}
842
843 /* This is the outline round the main forum tables */
844 .forumline{background:#ffffff;color:#000000;border:1px solid #006699}
845
846 /* Sidebar */
847 .box { background:#ffffff; border: 1px solid silver }
848 .box-title { font-family: Tahoma, Arial, Helvetica, sans-serif; font-weight: normal; /*font-size: 11pt; */ background-color: #ccc; color: black; /*font-style: menu;*/ text-align: center; border: none; padding: 2px 0 2px 0;}
849 .box-data { width: 160px; font-size: 9pt; font-weight: normal; border: none; }
850 .box-data .wiki { font-weight: normal; }
851 td.sidebar { border-spacing: 0px; margin: 0ex;}
852
853 /* plugin BoxRight */
854 div.boxright {
855   background-color: #e9fbff;
856   width: 200px; 
857   right: 10px;
858   padding: 0.5em; 
859   float: right; 
860   border: thin solid #888888; 
861   padding: 0.5em;
862 }
863
864 /* RssFeed */
865 div.rss { margin: 1em; padding: 1em; font-size: 0.9em; background-color: #eeeeee; border: thin dashed #aaa; }
866 div.feed { color: #333; margin: -0.5em; margin-bottom: 0em; padding: 0.3em; font-weight: bold; background-color: #f2f2f2; font-size: 1.2em; }
867 div.itemdesc {  padding-left: 1em; }
868 div.rssitem { border-top: thin dashed #aaa; }
869 a.rssicon { font-weight:normal; font-size:small; vertical-align:middle; }
870
871 /* SqlResult */
872 table.sqlresult { 
873   border: 1px outset gray;
874   background: white;
875   margin: 0.5ex 0.5em;
876   padding: 1px;
877 }
878 .sqlresult tr.evenrow { background: #eee; }
879 .sqlresult tr.oddrow  { background: white; }
880 table.sqlresult td {
881   margin: 1px;
882   border: 1px solid gray;
883 }
884
885 /**
886  * TeX2png plugin
887  */
888 img.tex { 
889   border: 0ex;
890   vertical-align: middle; 
891 }
892
893 /**
894  * PhotoAlbum plugin
895  */
896 .boldsmall {
897   font-weight: bold;
898   font-size: 11px;
899 }
900
901
902 .wikiwyg_toolbar {
903     background: #D3D3D3;
904     border: 1px outset;
905     letter-spacing: 0;
906     padding: 2px;
907 }
908
909 span.wikiwyg_control_link a {
910     padding-right: 8px;
911 }
912
913 .wikiwyg_button {
914     background: #D3D3D3;
915     border: 1px solid #D3D3D3;
916     cursor: pointer;
917     width: 20px;
918     height: 20px;
919     vertical-align: bottom;
920 }
921
922 .wikiwyg_button:hover {
923     border: 1px outset;
924 }
925
926 .wikiwyg_button:active {
927     border: 1px inset;
928 }
929
930 .wikiwyg_separator {
931     background: #D3D3D3;
932     border: 1px solid #D3D3D3;
933     width: 9px;
934     height: 20px;
935     vertical-align: bottom;
936 }
937
938 .wikiwyg_selector {
939     width: 70px;
940 }
941
942 .wikiwyg_wysiwyg table {
943     border-collapse: collapse;
944     margin-bottom: .2em;
945 }
946
947 .wikiwyg_wysiwyg table td {
948     border: 1px;
949     border-style: solid;
950     padding: .2em;
951     vertical-align: top;
952 }
953
954 /* Hide the elements we put in just to get around NS4 bugs. */
955 div.br { display: none; }
956
957 /* This makes spacings in NS4 too big. */
958 .toolbar, div.toolbar { margin: 0.5ex 0ex; }
959
960 /* This breaks NS4, but is necessary for IE4. */
961 div.wikitext { width: auto; }
962
963 /**
964  * General
965  */
966 /* for NS4 */
967 img { vertical-align: baseline; }
968 input { margin: 0.1em; }
969 input.numeric { text-align: right; }
970
971 /**
972  * Wiki Forms
973  * 
974  * The div inside the wikiadmin upload form does not
975  * have a class yet, so it must be referenced indirectly
976  */
977 /* div.wikiaction, div.wikiadmin { */
978 div.wikiaction, form.wikiadmin div {
979   border-bottom: 1px solid #d8d8e7;
980   border-right:  1px solid #d8d8e7;
981   border-top:  1px solid #96a2ae;
982   border-left: 1px solid #96a2ae;
983
984   margin-top: 0.5ex;
985   margin-bottom: 0.5ex;
986   padding: 0.5ex 0.5em;
987   /* Emulate the display behaviour of a table, to shrink it's width.
988    * ie5.1Mac ignores this */
989   display: table;
990 }
991
992 /* Add space between the input field and following buttons, but not after the last button. */
993 div.wikiaction input[type=text], div.wikiadmin input[type=text], form.wikiadmin input[type=file] { margin-right: 0.5em; }
994
995
996 /**
997  * Links
998   border-top:  1px solid #b2b2d1;
999   border-left: 1px solid #d2d2f1;
1000   border-bottom: 1px solid #86929e;
1001   border-right:  1px solid #86929e;
1002  */
1003
1004 /* Make wikiaction links look like buttons */ 
1005 a.wikiaction, a.wikiadmin, a.wikiunsafe,
1006 input.wikiaction, input.wikiadmin, input.wikiunsafe, input.button {
1007   color: black;
1008 /*
1009   border-top:  1px solid #c6d2de;
1010   border-left: 1px solid #c6d2de;
1011   border-bottom: 1px solid #494f5d;
1012   border-right:  1px solid #494f5d;
1013
1014   padding-top:    0.15ex;
1015   padding-bottom: 0.25ex;
1016   padding-left:  .5em;
1017   padding-right: .5em;
1018 */
1019   border: 1px outset;
1020   padding: 0.05ex 0.25em 0.1ex 0.25em;
1021   height: auto;
1022   width: auto;
1023   /* Prevent buttons from overlapping when the toolbar is wrapped. */
1024   line-height: 2.6ex;
1025   /*margin: 2ex 0.2em;*/
1026 }
1027
1028 div#navbuttons, div#signin, div#actionbuttons { line-height: 3.0ex; }
1029
1030 /* QuestionMark */
1031 .wikiunknown a, .named-wikiunknown a {
1032   border-top:  1px solid #c6d2de;
1033   border-left: 1px solid #c6d2de;
1034   border-bottom: 1px solid #a2a2a2;
1035   border-right:  1px solid #a2a2a2;
1036   padding-left:  1px;
1037   padding-right: 1px;
1038   padding-top: 1px;
1039   margin-right: .15em;
1040 }
1041
1042 /* Link icons */
1043 img.linkicon { vertical-align: middle; }
1044
1045
1046 /**
1047  * Edit Page & View Source
1048  */
1049 /* color: inherit; and background: inherit; display as lime in NS4 */
1050
1051 /* http://www.aboutus.org/UniversalWikiEditButton */
1052 div#actionbuttons a#btn-edit {
1053   background:  url('images/Edit-chalk-10g.png') bottom left no-repeat;
1054   background-repeat: no-repeat;
1055   padding-left: 20px !important;
1056   padding-right: 0.5em !important;
1057 }
1058 /* image buttons */
1059 a.wikibutton, a.wikibutton:visited, input.wikibutton  { 
1060   background-color: white;
1061   border: 0;
1062 }
1063
1064 /**
1065  * Diff Output
1066  */
1067 .diff .prefix {
1068   position: relative;
1069   left: -1em;
1070 }
1071 /* deleted & added words */
1072 .diff del, .diff ins {
1073   padding-left: 1px;
1074   padding-right: 1px;
1075 }
1076
1077 /**
1078  * Other
1079  */
1080 /* PHP Warnings */
1081 div.errors { font-size: smaller }
1082
1083 /*
1084  * table class="boxed"
1085  * will put a border around the table (but not around the cells)
1086  *
1087  * table class="bordered"
1088  * will put a border around the table and the cells
1089  *
1090  * In both cases, the caption will be bold and centered under the table
1091  *
1092  * In both cases, the headers (th) will have a "#d8d8d8" background
1093  */
1094
1095 table.boxed, table.bordered, table.bordered th, table.bordered td {
1096     border-width: 1px;
1097     border-style: solid;
1098     border-collapse: collapse;
1099     vertical-align: top;
1100 }
1101
1102 table.boxed td, table.bordered td,
1103 table.boxed th, table.bordered th {
1104     padding-left: 5px;
1105     padding-right: 5px;
1106     padding-top: 0px;
1107     padding-bottom: 0px;
1108 }
1109
1110 table.boxed caption, table.bordered caption {
1111     text-align: center;
1112     font-weight: bold;
1113     caption-side: bottom;
1114     padding-top: 0.8em;
1115 }
1116
1117 table.boxed th, table.bordered th {
1118     font-weight: bold;
1119     background-color: #d8d8d8;
1120 }
1121
1122 #edit-public, h1.firstHeading-public, h1.firstHeading-rating-public {
1123         background-color: #ffce7b;
1124         border: 1px solid #ffa500;
1125 }
1126
1127 /* For emacs users
1128  *
1129  * Local Variables:
1130  * mode: c
1131  * c-file-style: cc-mode
1132  * End:
1133  */