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