]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/MacOSX/MacOSX.css
No h4 for errors
[SourceForge/phpwiki.git] / themes / MacOSX / MacOSX.css
1 /*
2  $Id$
3
4  Classes:
5
6  div.wikitext - the transformed wiki page text.
7
8  a.wiki             - link to page in wiki.
9  a.named-wiki       - a named link to page in wiki (from e.g. [name|WikiPage]).
10  a.interwiki        - link to page in another wiki
11  span.wikipage    - page name within interwiki link.
12  a.named-interwiki  - link to page in another wiki
13  a.url              - link to external URL from wiki page.
14  a.named-url        - link to external URL from wiki page.
15
16  .wikiunknown a, .wikiunknown u
17  .named-wikiunknown a, .named-wikiunknown u
18
19  a.wikiaction
20  a.wikiadmin
21  .wikiunsafe
22
23  a.backlinks
24
25  TODO: Get rid of tables in wikiaction forms.
26  */
27
28 body { background: #fafafa url("images/bgpaper8.png"); }
29 body.edit { background: #fafafa url("images/bggranular.png"); }
30
31 body { }
32
33 /* Ensure identical vertical alignment for adjacent form buttons,
34    whether image based (Theme buttons) or not */
35 input[type=submit],
36 input[type=cancel],
37 input[type=image] { vertical-align: middle }
38
39 /*
40  * NS4, defaults from body don't always propagate correctly.
41  * So we need this:
42  */
43 h1, h2, h3, .toolbar, td { font-family: "Lucida Grande", Helvetica, Arial, sans-serif; }
44
45 input.button { font-family: "Lucida Grande", Helvetica, Arial, sans-serif; }
46
47 input.numeric {
48   text-align: right;
49 }
50 .wikitext pre { font-family: Monaco, monospace; }
51
52
53
54
55 input[type=text] {
56   border-top:    1px solid #7c7c7c;
57   border-left:   1px solid #c3c3c3;
58   border-bottom: 1px solid #dddddd;
59   border-right:  1px solid #c3c3c3;
60 }
61
62 /* Add space between the input field and following buttons, but not after the last button. */
63 div.wikiaction input[type=text],
64 div.wikiadmin input[type=text],
65 form.wikiadmin input[type=file] {
66   margin-right: 0.5em;
67 }
68
69
70
71 /**
72  * Wiki
73  */
74 div.wikitext {
75   background: white;
76   /* for NS4 */
77   border: 1px solid black;
78
79   border-top:    1px solid #7c7c7c;
80   border-left:   1px solid #c3c3c3;
81   border-bottom: 1px solid #dddddd;
82   border-right:  1px solid #c3c3c3;
83   padding-left: 0.8em;
84   padding-right: 0.8em;
85   padding-top: 0.5em;
86   padding-bottom: 0.5em;
87   margin: 0.5ex 0px;
88   /* This breaks Netscape 4: (display does not go full width).
89   width: auto;
90   */
91 clear: both;
92 }
93
94 input.wikitext { margin:0px; }
95 input[type=text] {
96   height: 2.7ex;
97   padding: 0.4ex 0.3ex;
98 }
99
100 div.toolbar { margin: 1ex 0ex; }
101
102
103 /**
104  * PageTypes
105  */
106 .interwiki-map thead td {
107   background: #e8e8e8;
108   font-weight: bold;
109   font-size: smaller;
110 }
111 .interwiki-map thead td:first-child { text-decoration: underline; }
112 .interwiki-moniker { background: #eee; }
113 .interwiki-url { background: #f8f8f8; }
114
115
116 /* Mozilla RecentChanges Sidebar */
117 body.sidebar {
118   font-size: smaller;
119   margin: 0.5em;
120 }
121 body.sidebar div.wikitext {
122   padding: 0.5em;
123 }
124 body.sidebar div.wikitext ul { padding-left: 1em; }
125 body.sidebar h2 { margin-top: 0; }
126
127
128 div.errors {
129   background: #eee;
130   border: 1px solid gray;
131   padding-left: 0.8em;
132   padding-right: 0.8em;
133   padding-top: 0.8ex;
134   padding-bottom: 0;
135   margin-top: 1em;
136   clear: both;
137   font-size: smaller;
138 }
139
140 .errors {
141   color: black;
142   text-decoration: underline;
143   font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
144   margin-top: 0;
145   margin-bottom: 0.5ex;
146 }
147
148 .error {
149   font-family: Monaco, monospace;
150   margin: 0;
151   font-size: smaller;
152 }
153 .error ul {
154   font-size: smaller;
155   font-family: Monaco, monospace;
156 }
157 /* Debug */
158 .debug {
159   color: black;
160   background: white;
161   font-family: monospace;
162   font-size: smaller;
163   margin: 1ex 0;
164   padding: 0.5ex 0.5em;
165   border: 1px solid #eee;
166 }
167
168
169 /*
170  * Style for <hr>s in wiki markup.
171  */
172 .wikitext hr {}
173
174
175 /*
176  * Link styles
177  */
178 /* Wiki Links */
179 a.wiki { text-decoration: none; }
180 .wiki, .named-wiki { font-weight: bold; color:#1d42be; } /*blue*/
181 /* This is obscene in NS4
182   b .wiki, STRONG .wiki { font-size: larger; }
183  */
184
185 /* Unknown links */
186 .wikiunknown a, .named-wikiunknown a, .wikiunknown U { text-decoration: none; }
187
188 .wikiunknown, .named-wikiunknown {color: #555; }
189
190 /* Interwiki links */
191 a.interwiki { text-decoration: none; }
192 .wikipage   { font-weight: bold; }
193
194 .interwiki,
195 i .interwiki .wikipage, em .interwiki .wikipage { font-style: oblique; }
196
197 .interwiki .wikipage,
198 i .interwiki, em .interwiki { font-style: normal; }
199
200 /*
201  * wikiaction, wikiadmin, wikiunsafe:
202  */
203 a.wikiaction, a.wikiadmin { text-decoration: none; }
204
205 /*
206  * No border on external link icons.
207  */
208 img.linkicon, img.rssicon { border: 0px; }
209 img.rssicon { vertical-align: middle; }
210 /* This screws up NS4, moved to phpwiki-heavy.css
211 img.linkicon { vertical-align: middle; }
212 */
213 img.wiki-button { vertical-align: middle; }
214
215 a.wikiaction { border: 0; }
216
217 /* backlinks */
218 a.backlinks { color: #006; }
219
220 /* Make the textarea on the edit page full width */
221 textarea.wikiedit { width: 100%; margin-top: 1ex; }
222
223 p.editdate { font-size: smaller; margin-bottom: 0; font-family: "Lucida Grande", Helvetica, Arial, sans-serif; }
224
225 /* Calendar plugin */
226 a.cal-hide,
227 a.cal-arrow { text-decoration: none; }
228 .cal-arrow { font-weight: bold; }
229 .cal-dayname {
230   font-size: smaller;
231   text-decoration: none;
232 }
233 table.cal {
234   /* for NS4 */
235   /*border: 1px solid black;
236
237   border-top:    1px solid #7c7c7c;
238   border-left:   1px solid #c3c3c3;
239   border-bottom: 1px solid #dddddd;
240   border-right:  1px solid #c3c3c3;
241   background: #bebebe;*/
242 }
243 table.cal td {
244   background: white;
245   /* for NS4 */
246   border: 1px solid black;
247
248   border-top:    1px solid #7c7c7c;
249   border-left:   1px solid #c3c3c3;
250   border-bottom: 1px solid #dddddd;
251   border-right:  1px solid #c3c3c3;
252 }
253 table.cal-header td {
254   font-size:  larger;
255   background: white;
256   border: 0px;
257 }
258 table.cal td.cal-dayname { background: #e8e8e8; }
259 table.cal td.cal-today {
260   background:    #f4f4f4;
261   /* for NS4 */
262   border: 1px solid black;
263
264   border-top:    1px solid #7c7c7c;
265   border-left:   1px solid #c3c3c3;
266   border-bottom: 1px solid #dddddd;
267   border-right:  1px solid #c3c3c3;
268 }
269
270 /* IncludePage plugin */
271 .transclusion-title {
272   font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
273   /* font-style: oblique; */
274   font-size: smaller; /* 0.75em; */
275   text-decoration: underline;
276   text-align: right;
277 }
278
279 div.transclusion {
280   /* background: #fff url("images/bgpaper8.png"); */
281   /* background: white; */
282   background: #fdfdfd;
283   /* for NS4 */
284   border: 1px solid black;
285
286   border-top:    1px solid #7c7c7c;
287   border-left:   1px solid #c3c3c3;
288   border-bottom: 1px solid #dddddd;
289   border-right:  1px solid #c3c3c3;
290
291   padding-left:  0.8em;
292   padding-right: 0.8em;
293   padding-top:    0px;
294   padding-bottom: 0px;
295   margin: 0.5ex ;
296 }
297
298 /* The transclusion of the TextEditingRules Synopsis on templates/editpage.html */
299 div.wiki-edithelp .transclusion {
300   font-size: smaller;
301   background: inherit;
302   padding: 0.5ex 0.5em;
303   margin: 0.2ex 5%;
304 }
305 div.wiki-edithelp .transclusion p { margin: 0; }
306 div.wiki-edithelp {
307   /* background: #fff url("images/bgpaper8.png"); */
308   background: white;
309   /* for NS4 */
310   border: 1px solid black;
311
312   border-top:    1px solid #7c7c7c;
313   border-left:   1px solid #c3c3c3;
314   border-bottom: 1px solid #dddddd;
315   border-right:  1px solid #c3c3c3;
316
317   font-size: smaller;
318   padding: 6pt;
319 }
320 div.wiki-message {
321   background: #fff url("images/bggranular.png");
322   border: solid 1px #d8d8d8;
323   padding: 6pt;
324 }
325 .printer { display: none; }
326
327
328 /**
329  * Diff Output
330  */
331 /* main box */
332 .diff {
333   background: white;
334   /* for NS4 */
335   border: 1px solid black;
336
337   border-top:    1px solid #7c7c7c;
338   border-left:   1px solid #c3c3c3;
339   border-bottom: 1px solid #dddddd;
340   border-right:  1px solid #c3c3c3;
341 }
342 .diff .block {
343   background: #d8d8d8;
344   /* for NS4 */
345   /*  border: none;*/
346 }
347
348 /* individual blocks */
349 .diff .context {
350   background: white;
351   /* for NS4 */
352   border: none;
353 }
354 /* + - line prefix */
355 .diff .block tt.prefix {
356   font-weight: normal;
357   font-family: monospace;
358   margin-left: -1.6em;
359   color: black;
360   /* for NS4 */
361   border: none;
362 }
363 /* changed words */
364 .diff ins { font-weight: bolder; }
365 .diff ins { text-decoration: none; }
366
367 /* blocks containing deleted or added words */
368 .diff .original,
369 .diff .deleted,
370 .diff .final,
371 .diff .added {
372   background: white;
373 }
374 /* blocks containing deleted words */
375 .diff .original:first-child,
376 .diff .deleted:first-child {
377   border-top: 2px solid #f99; /* fcc */
378 }
379 .diff .original,
380 .diff .deleted {
381   background: white;
382   border-left: 2px solid #f99; /* fcc */
383   border-right: 2px solid #f99; /* fcc */
384 }
385 .diff .original:last-child,
386 .diff .deleted:last-child {
387   border-bottom: 2px solid #f99; /* fcc */
388 }
389 /* blocks containing added words */
390 .diff .final:first-child,
391 .diff .added:first-child {
392   border-top: 2px solid #9f9; /* cfc */
393 }
394 .diff .final,
395 .diff .added {
396   background: white;
397   border-left: 2px solid #9f9; /* cfc */
398   border-right: 2px solid #9f9; /* cfc */
399 }
400 .diff .final:last-child,
401 .diff .added:last-child {
402   border-bottom: 2px solid #9f9; /* cfc */
403 }
404 /* These don't work in NS4 -- it completely ignores <del> and <ins>. */
405 /* deleted words */
406 .diff del { background: #fcc; } /* f99 */
407 /* added words */
408 .diff ins { background: #cfc; } /* 9f9 */
409
410
411 /**
412  * PageList output
413  */
414 .pagelist {
415   font-size: smaller;
416 }
417 .pagelist tr.evenrow { background: #f8f8f8; }
418 .pagelist tr.oddrow  { background: #eee; }
419 .pagelist thead td {
420   background: #e8e8e8;
421   text-decoration: none;
422   font-weight: bold;
423 }
424 .pagelist thead td u { text-decoration: none; }
425 /* Yellow highlight for every td of mouseover'd tr in pagelist tbody
426    ie mac ignores all these */
427 /*.pagelist tbody tr:hover>td { background: #ffff99; }*/
428 .pagelist tbody tr:hover>td {
429   border: solid #ffff99 2px;
430 }
431 /* some browsers give wacky expanding :hover cells,
432    use transparent border here instead of padding change */
433 .pagelist tbody tr>td {
434   border: solid transparent 2px;
435 }
436 th.gridbutton {
437   background-color: ThreeDLightShadow;
438   color: black;
439   font-family: Tahoma, Arial, Helvetica, sans-serif;
440   font-size: small;
441   font-weight: normal;
442   height: 18px;
443   white-space: nowrap;
444   max-height: 24px;
445   padding: 5px 0px 5px 0px;
446   margin: 5px 0px;
447   float: none;
448   border-width: 1px;
449   border-style: solid;
450   border-color: ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight;
451 }
452 input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton {
453   text-decoration: none;
454   font-size: small;
455   font-weight: normal;
456   font-family: Tahoma, Arial, Helvetica, sans-serif;
457   background-color: ThreeDLightShadow;
458   color: black;
459 }
460
461 /**
462  * Search
463  */
464 #searchholder { display: inline; }
465
466 /**
467  * Search Results
468  */
469 .search-context { background: white; font-style: oblique; }
470 .search-term {
471   background: #9bdaff;
472   font-weight: normal;
473 }
474 #LSResult {
475   position: absolute;
476   text-align: left;
477   display: none;
478   z-index: 100;
479   background-color: white;
480   border: 1px solid #d0d0d0; 
481   font-size: 9px;
482   overflow: hidden;
483 }
484 #LSHighlight {
485   background-color: #f08000;
486 }
487 #LSResult .evenrow {
488   background-color: #f0f0f0;
489
490 #LSREsult .oddrow {
491
492 .LSEnd {
493   text-align: right;
494 }
495 .LSRow:hover {
496   background-color: white;
497 }
498 .LSRow {
499   padding: 1px;
500
501 ul.LSRes {
502   margin: 0px;
503   padding: 0px;
504 }
505 li.LSRow {
506   margin: 0px;
507   list-style-image: none;
508 }
509
510 .clear-floats {
511   clear: both;
512 }
513
514 dl {
515   display:table;
516 }
517 /* dotted underline each dt. use display:table to shrink width */
518 dt {
519   display: table;
520   font-weight: bold;
521   vertical-align: baseline;
522   margin-top: 1.25ex;
523   margin-bottom: 0.25ex;
524   padding-left: 0.25ex;
525   padding-right: 0.25ex;
526   border-bottom-style: dotted;
527   border-bottom-width: 2pt;
528   border-bottom-color: #9999cc;
529 }
530 /* No underlines for wiki-links in dt,
531    we already have dotted underline */
532 dt a.wiki, dt a.named-wiki {
533   text-decoration: none;
534 }
535 /* No top margin for first dt */
536 dl>dt:first-child {
537   margin-top: 0ex;
538 }
539 /* underline each dd.
540    use display:table to shrink width */
541 dd {
542 /* overflows wide text beyond containing dl */
543 /* in most browsers :( Would have been nice */
544 /*   display: table; */
545   position: relative;
546   margin-left: 3.5em;
547   margin-bottom: 0.5ex;
548   padding-left: 0.125em;
549   padding-bottom: 0.5ex;
550   padding-right: 0.125em;
551   border-bottom-style: solid;
552   border-bottom-width: thin;
553   border-bottom-color: #9999cc;
554 }
555 pre,
556 div.plugin code {
557   color: black;
558   display: block;
559   background-color: #fcfcfc;
560   font-size: 90%;
561   line-height: 1.25em;
562   margin-top: 0.25em;
563   margin-left: 0em;
564   margin-bottom: 2ex;
565   margin-right: 0em;
566   padding-top: 0.25em;
567   padding-left: 0.5em;
568   padding-bottom: 0.25em;
569   padding-right: 0.5em;
570   border-style: solid;
571   border-width: 1px;
572   border-color: #ccc;
573 }
574 pre {
575   background: #fafafa url("images/bgpaper8.png");
576 }
577 /* Indented wrap past diff buttons in RecentChanges */
578 ul li.rc-major, ul li.rc-minor {
579   margin-left: 0;
580   padding-left: 3em;
581   text-indent: -3em;
582 }
583
584 /* IncludePage plugin */
585 .transclusion-title {
586   text-align: right;
587   font-style: oblique;
588   font-size:  smaller;
589   text-decoration: underline;
590   margin-bottom: 0.25ex;
591   margin-right:  0.25em;
592
593 .transclusion, .wiki-edithelp {
594   font-size: smaller;
595 }
596 .transclusion {
597   border: 1px solid gray;
598   padding-left:  0.8em; 
599   padding-right: 0.8em; 
600   padding-top:     0px;
601   padding-bottom:  0px;
602   margin-left:   0.25em;
603   margin-right:  0.25em;
604   margin-bottom: 0.1ex;
605 }
606 .wiki-edithelp {
607   background: white;
608   border: medium solid #fff8dc; /* darker ivory */
609   padding-left:  0.5em;
610   padding-right: 0.5em;
611   padding-top:    0.75ex;
612   padding-bottom: 0.75ex;
613   margin-left:  0;
614   margin-right: 0;
615   margin-top: 1ex;
616   margin-bottom: 1ex;
617 }
618 .wiki-edithelp .wiki {
619   /* color: #5454ff;*/
620 }
621 .wiki-edithelp p {
622   font-family: Arial, Helvetica, sans-serif;
623   padding-left:  0.5em;
624   padding-right: 0.5em;
625   padding-top:    0.5ex;
626   padding-bottom: 0.5ex;
627   margin: 0;
628 }
629 /**
630  * PageHistory, Info
631  */
632 td.pageinfo { font-weight: bold; }
633 .pageinfo-minoredit, .pageinfo-authorid {
634   font-size: smaller;
635   font-style: oblique;
636 }
637
638
639 /**
640  * Other
641  */
642 .printer, .no-css { display: none; }
643
644 /* Disabled Plugins */
645 .disabled-plugin
646 {
647   clear: both;
648   margin: 1ex 0;
649   padding: 0;
650 }
651 .disabled-plugin .title {
652   color: #400;
653   background-color: inherit;
654   font-size: x-small;
655   text-align: right;
656   padding: 0 0.5em;
657 }
658 .disabled-plugin pre {
659   color: black;
660   background: #ddd;
661   margin: 0;
662   padding: 0.3ex 0.5em;
663 }
664
665 /* "(Redirected from ...)" message. */
666 span.redirectfrom {
667   font-size: small;
668   font-style: oblique;
669   font-weight: normal;
670   padding-left: 1em;
671 }
672
673 /*
674  * "E-mail" style blockquote
675  */
676 blockquote.mail-style-quote {
677   border-left: medium #284 solid;
678   padding-left: 1em;
679   margin-left: 0;
680   margin-right: 0;
681 }
682 .mail-style-quote blockquote.mail-style-quote {
683   margin-left: -0.6em;
684 }
685
686
687 /*
688  * wikiblog
689  */
690 .floatleft { float: left; }
691 .floatright { float: right; }
692
693 div.wikiblog {
694   /* border: thin black solid; */
695   margin: 1ex 2em;
696   padding: 0 0;
697 }
698 div.wikiblog > div {
699   margin: 0 0;
700   padding: 0.5ex 0.5em;
701 }
702 div.wikiblog-header {
703   /* background-color: #ccf; */
704 }
705 div.wikiblog > div.wikiblog-footer {
706   /* background-color: #eee; */
707   padding: 0.2ex 0.5em;
708 }
709 h3.wikiblog-summary {
710   font-size: medium;
711   font-weight: bold;
712   margin: 0 0 1ex 0;
713 }
714
715 div.wikiblog.wikiblog-form {
716   /* background-color: #eee; */
717 }
718
719 table.wikiblog-form {
720   width: auto;
721   border-collapse: collapse;
722   margin: 0.25em 0;
723 }
724 .wikiblog-form caption {
725   /* background-color: #ccf; */
726   caption-side: top;
727   font-weight: bold;
728   text-align: left;
729   padding: 0.5ex 0.5em;
730 }
731 .wikiblog-form th {
732   vertical-align: top;
733   text-align: right;
734   padding: 0 0 0.3em 0.5em;
735 }
736 .wikiblog-form td {
737   padding: 0.25em 0.5em;
738 }
739 .wikiblog-form td.submit-button {
740   padding: 0;
741 }
742 .wikiblog-form input[type=text],
743 .wikiblog-form textarea {
744   margin: 0 0;
745   width: 100%;
746 }
747 div.wikicomment div.wikicomment-footer {
748   padding: 0.2ex 0.5em;
749 }
750 div.wikicomment div.wikicomment-footer named-wiki {
751   font-size: small;
752 }
753 table.interwiki-map {
754   margin: 1em 2em;
755 }
756 .interwiki-map th {
757   text-decoration: underline;
758   text-align: left;
759   padding-left: 1em;
760 }
761 .interwiki-map td.interwiki-url {
762   padding-left: 2em;
763 }
764 .interwiki-map th.interwiki-url {
765   padding-left: 3em;
766 }
767
768 .dialog {
769   background-color: #cdf;
770   color: black;
771   margin: 2em auto 2em auto;
772   border: thin black solid;
773   width: 50%;
774 }
775 .dialog h1, .dialog p, .dialog div {
776   text-align: center;
777 }
778 .dialog h1 {
779   font-size: large;
780   margin: 0.5em 0 1em 0;
781 }
782 .dialog div.message {
783   background-color: white;
784   color: black;
785   color: black;
786   margin: 0 1em;
787   padding: 0.5em 0.5em;
788 }
789 .dialog p.buttons {
790   margin: 1em 0 0.5em 0;
791 }
792
793
794
795 /* postnuke css:*/
796 .gensmall{font-size:10px}
797 .genmed{font-size:11px}
798 td.cat{font-weight:bold;letter-spacing:1px;color:#000000;background: url(./images/cellpic1.png);height:27px}
799 /* Main table cell colours and backgrounds */
800 td.row1{background:#eaedf4;color:#000000}
801 td.row2{background:#d9e2ec;color:#000000}
802 td.row3{background:#cad9ea;color:#000000}
803 td.spacerow{background:#cad9ea;color:#000000}
804
805 /* This is the outline round the main forum tables */
806 .forumline{background:#ffffff;color:#000000;border:1px solid #006699}
807
808 /* Sidebar */
809 .box { background:#ffffff; border: 1px solid silver }
810 .box-title { font-family: Tahoma, sans-serif; font-weight: normal; background-color: #ccc; color: black; text-align: center; border: none; padding: 2px 0 2px 0;}
811 .box-data { width: 160px; font-size: 9pt; font-weight: normal; border: none; }
812 .box-data .wiki { font-weight: normal; }
813 td.sidebar { border-spacing: 0px; margin: 0ex;}
814
815 /* plugin BoxRight */
816 div.boxright {
817   background-color: #e9fbff;
818   width: 200px; 
819   right: 10px;
820   padding: 0.5em; 
821   float: right; 
822   border: thin solid #888888; 
823   padding: 0.5em;
824 }
825
826 /* RssFeed */
827 div.rss { margin: 1em; padding: 1em; font-size: 0.9em; background-color: #eeeeee; border: thin dashed #aaa; }
828 div.feed { color: #333; margin: -0.5em; margin-bottom: 0em; padding: 0.3em; font-weight: bold; background-color: #f2f2f2; font-size: 1.2em; }
829 div.itemdesc {  padding-left: 1em; }
830 div.rssitem { border-top: thin dashed #aaa; }
831
832 /* SqlResult */
833 table.sqlresult { 
834   border: 1px outset gray;
835   background: white;
836   margin: 0.5ex 0.5em;
837   padding: 1px;
838 }
839 .sqlresult tr.evenrow { background: #eee; }
840 .sqlresult tr.oddrow  { background: white; }
841 table.sqlresult td {
842   margin: 1px;
843   border: 1px solid gray;
844 }
845
846 /**
847  * TeX2png plugin
848  */
849 img.tex { 
850   border: 0ex;
851   vertical-align: middle; 
852 }
853
854 /**
855  * PhotoAlbum plugin
856  */
857 .boldsmall {
858   font-weight: bold;
859   font-size: 11px;
860 }
861
862
863 .wikiwyg_toolbar {
864     background: #D3D3D3;
865     border: 1px outset;
866     letter-spacing: 0;
867     padding: 2px;
868 }
869
870 span.wikiwyg_control_link a {
871     padding-right: 8px;
872 }
873
874 .wikiwyg_button {
875     background: #D3D3D3;
876     border: 1px solid #D3D3D3;
877     cursor: pointer;
878     width: 20px;
879     height: 20px;
880     vertical-align: bottom;
881 }
882
883 .wikiwyg_button:hover {
884     border: 1px outset;
885 }
886
887 .wikiwyg_button:active {
888     border: 1px inset;
889 }
890
891 .wikiwyg_separator {
892     background: #D3D3D3;
893     border: 1px solid #D3D3D3;
894     width: 9px;
895     height: 20px;
896     vertical-align: bottom;
897 }
898
899 .wikiwyg_selector {
900     width: 70px;
901 }
902
903 .wikiwyg_wysiwyg table {
904     border-collapse: collapse;
905     margin-bottom: .2em;
906 }
907
908 .wikiwyg_wysiwyg table td {
909     border: 1px;
910     border-style: solid;
911     padding: .2em;
912     vertical-align: top;
913 }
914
915 /**
916  * Wiki
917  */
918 /* this completely prevents NS4 from editing pages. */
919 textarea.wikiedit, input.wikitext, textarea.summary {
920   background: white;
921   /* for older browsers */
922   border: 1px solid black;
923
924   border-top:    1px solid #7c7c7c;
925   border-left:   1px solid #c3c3c3;
926   border-bottom: 1px solid #dddddd;
927   border-right:  1px solid #c3c3c3;
928   padding-left: 0.8em; 
929   padding-right: 0.8em; 
930   padding-top: 0.5em;
931   padding-bottom: 0.5em;
932   margin: 0.5ex 0px;
933  /* This breaks Netscape 4: (display does not go full width).
934     width: auto;
935  */
936  clear: both;
937 }
938
939
940
941 /* This makes spacings in NS4 too big. */
942 .toolbar , div.toolbar  {
943   margin : 0.5ex 0;
944 }
945 /* This break NS4, but is necessary for IE4. */
946 div.wikitext  {
947   width : auto;
948 }
949 /* Link icons */
950 img.linkicon  {
951   vertical-align : middle;
952 }
953
954
955 /**
956  * PageTypes
957  */
958 .interwiki-map thead td,
959 .interwiki-moniker,
960 .interwiki-url {
961   padding-left: 1em;
962   padding-right: 1em;
963 }
964
965
966 /**
967  * Diff Output
968  */
969 /* main box */
970 .diff {
971   margin:  0.5ex 0;
972   padding: 1px;
973 }
974 .diff .block {
975   padding: 0.5ex 0.5em;
976 }
977 /* blocks containing deleted or added words */
978 .diff .original, .diff .deleted,
979 .diff .final, .diff .added {
980   padding: 1px;
981 }
982
983 .diff .block div {
984   position: relative;
985   padding-left: 1.5em;
986
987 .diff .prefix {
988   position: absolute;
989   left: 0;
990   top:  0;
991 }
992
993 /* These don't work in NS4 -- it completely ignores <del> and <ins>. */
994 /* deleted & added words */
995 .diff del, .diff ins {
996   padding-left: 0.5ex;
997   padding-right: 0.5ex;
998 }
999
1000 /*
1001  * table class="boxed"
1002  * will put a border around the table (but not around the cells)
1003  *
1004  * table class="bordered"
1005  * will put a border around the table and the cells
1006  *
1007  * In both cases, the caption will be bold and centered under the table
1008  *
1009  * In both cases, the headers (th) will have a "#d8d8d8" background
1010  */
1011
1012 table.boxed, table.bordered, table.bordered th, table.bordered td {
1013     border-width: 1px;
1014     border-style: solid;
1015     border-collapse: collapse;
1016     vertical-align: top;
1017 }
1018
1019 table.boxed td, table.bordered td,
1020 table.boxed th, table.bordered th {
1021     padding-left: 5px; 
1022     padding-right: 5px; 
1023     padding-top: 0px; 
1024     padding-bottom: 0px; 
1025 }
1026
1027 table.boxed caption, table.bordered caption {
1028     text-align: center;
1029     font-weight: bold;
1030     caption-side: bottom;
1031     padding-top: 0.8em;
1032 }
1033
1034 table.boxed th, table.bordered th {
1035     font-weight: bold;
1036     background-color: #d8d8d8;
1037 }
1038
1039 /* For emacs users
1040  *
1041  * Local Variables:
1042  * mode: c
1043  * c-file-style: cc-mode
1044  * End:
1045  */