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