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