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