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