]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/fusionforge/fusionforge.css
Better use background-color
[SourceForge/phpwiki.git] / themes / fusionforge / fusionforge.css
1 /**
2  * $Id$
3  *
4  * Copyright (C) 2002-2007 $ThePhpWikiProgrammingTeam
5  * Copyright (C) 2008-2010 Alcatel-Lucent
6  *
7  * This file is part of PhpWiki.
8  *
9  * PhpWiki is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * PhpWiki is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with PhpWiki; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22 */
23
24 /*
25  * Standard Alcatel-Lucent disclaimer for contributing to open source
26  *
27  * "The Style Sheet ("Contribution") has not been tested and/or
28  * validated for release as or in products, combinations with products or
29  * other commercial use. Any use of the Contribution is entirely made at
30  * the user's own responsibility and the user can not rely on any features,
31  * functionalities or performances Alcatel-Lucent has attributed to the
32  * Contribution.
33  *
34  * THE CONTRIBUTION BY ALCATEL-LUCENT IS PROVIDED AS IS, WITHOUT WARRANTY
35  * OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
36  * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, COMPLIANCE,
37  * NON-INTERFERENCE AND/OR INTERWORKING WITH THE SOFTWARE TO WHICH THE
38  * CONTRIBUTION HAS BEEN MADE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL
39  * ALCATEL-LUCENT BE LIABLE FOR ANY DAMAGES OR OTHER LIABLITY, WHETHER IN
40  * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
41  * CONTRIBUTION OR THE USE OR OTHER DEALINGS IN THE CONTRIBUTION, WHETHER
42  * TOGETHER WITH THE SOFTWARE TO WHICH THE CONTRIBUTION RELATES OR ON A STAND
43  * ALONE BASIS."
44  */
45
46 /**
47  * General
48  */
49
50 /* Because in some cases there is a <p> in nested lists */
51 li p { margin:0; }
52
53 div.wikitext table p { margin-top: 0.3em;  margin-bottom: 0.3em;}
54
55 img { vertical-align: baseline; }
56 input { margin: 0.1em; }
57 input.numeric { text-align: right; }
58
59 fieldset {
60     background-color: #e0f3f7;
61 }
62
63 legend {
64     border: 1px solid #d8d8e7;
65     background-color: white;
66 }
67
68 img { border: 0; }
69
70 form { margin: 0ex; }
71
72 table {
73     /* For Mozilla */
74     empty-cells: show;
75 }
76
77 caption {
78     caption-side: top;
79     text-align: left;
80     margin-bottom: .5ex;
81 }
82
83 /**
84  * Wiki Forms
85  * 
86  * The div inside the wikiadmin upload form does not
87  * have a class yet, so it must be referenced indirectly
88  */
89 /* div.wikiaction, div.wikiadmin { */
90 div.wikiaction, form.wikiadmin div {
91   border-bottom: 1px solid #d8d8e7;
92   border-right:  1px solid #d8d8e7;
93   border-top:  1px solid #96a2ae;
94   border-left: 1px solid #96a2ae;
95
96   margin-top: 0.5ex;
97   margin-bottom: 0.5ex;
98   padding: 0.5ex 0.5em;
99   /* Emulate the display behaviour of a table, to shrink it's width. */
100   display: table;
101 }
102
103 /* Add space between the input field and following buttons, but not after the last button. */
104 div.wikiaction input[type=text], div.wikiadmin input[type=text], form.wikiadmin input[type=file] { margin-right: 0.5em; }
105
106 div#actionbuttons { line-height: 3.0ex; }
107
108 /* QuestionMark */
109 .wikiunknown a, .named-wikiunknown a {
110   border-top:  1px solid #c6d2de;
111   border-left: 1px solid #c6d2de;
112   border-bottom: 1px solid #a2a2a2;
113   border-right:  1px solid #a2a2a2;
114   padding-left:  1px;
115   padding-right: 1px;
116   padding-top: 1px;
117   margin-right: .15em;
118 }
119
120 /* Link icons */
121 img.linkicon { vertical-align: middle; }
122
123 img.inlineimage { vertical-align: middle; }
124
125 /**
126  * Wiki
127  */
128
129 div.wikitext pre { 
130   font-family: monospace; 
131   border-width: 1px;
132   border-color: navy;
133   border-style: dashed;
134   padding: 0.5em;
135 }
136
137 /**
138  * PageTypes
139  */
140 /* Main wiki text box */
141 div.wikitext {
142   margin-top:    1ex;
143   margin-bottom: 0.5ex;
144   padding-bottom: 1em;
145   clear: both;
146 }
147
148 /* Mozilla RecentChanges Sidebar */
149 body.sidebar {
150   margin: 0.5em;
151 }
152 body.sidebar div.wikitext {
153   padding: 0.5em;
154 }
155 body.sidebar div.wikitext ul { padding-left: 1em; }
156 body.sidebar h2 { margin-top: 0; }
157
158 /**
159  * Link styles
160  */
161 .wiki, .named-wiki {
162   /* text-decoration: none; */
163   font-weight: bold;
164 }
165
166 /* Action buttons */
167 a.wikiaction, a.wiki-rc-action, a.wikiunsafe,
168 input.wikiaction, input.button, input.wikiadmin {
169   text-decoration: none;
170   /* don't wrap text buttons */
171   white-space: nowrap;
172 }
173
174 input.wikiaction, input.button, input.wikiadmin {
175   margin-right: 1em;
176   margin-left: 1em;
177 }
178
179 .wikiunsafe { background-color: #fcc; }
180
181 /* Unknown links */
182 .wikiunknown, .named-wikiunknown {
183   font-weight: normal;
184   font-size: 100%;
185 }
186  /* QuestionMark #600 */
187 .wikiunknown a, .named-wikiunknown a {
188   color: #447;
189   background-color: #eee;
190   text-decoration: none;
191   font-weight: normal;
192   font-size: smaller;
193 }
194
195 /* Backlinks */
196 .backlinks {
197   text-decoration: underline;
198 }
199 h1 .backlinks { text-decoration: none; color: inherit; }
200
201 /* Interwiki links */
202 .wikipage  { font-weight: normal; }
203 .interwiki, i.interwiki .wikipage, em .interwiki .wikipage { font-style: oblique; }
204 .interwiki .wikipage, i .interwiki, em .interwiki { font-style: normal; }
205
206 /* CreateToc plugin =================================================== */
207
208 div.toc {
209     border: 1px solid #aaaaaa;
210     background-color: #f9f9f9;
211     padding: 5px;
212 }
213
214 div.toc ul { list-style: none }
215
216 div.toc p.toctitle { font-weight: bold; font-size: 1.6em; margin-bottom: 1ex; }
217 div.toc p { margin: 0; }
218
219 .toclist a { text-decoration: none; }
220
221 /**
222  * headings
223  */
224 div.toc p.toctitle, h2, h3, h4, h5, h6 { 
225     font-family: Verdana, Arial, Helvetica, sans-serif; 
226     padding-top: .5em;
227     padding-bottom: .17em;
228     border-bottom: 1px solid #aaaaaa;
229 }
230
231 h1, h1 .backlinks, h2, .wikitext h2 a, h3, .wikitext h3 a, h4, .wikitext h4 a, h5, h6 {
232     text-decoration: none;
233 }
234
235 /**
236  * Tables
237  */
238 .pagelist thead th {
239   background: #d8d8d8;
240   text-decoration: none;
241   font-weight: bold;
242 }
243 .pagelist thead td u { text-decoration: none; }
244 .pagelist tr { vertical-align: top; }
245 .pagelist tr.evenrow { background: #eee; }
246 .pagelist tr.oddrow  { background: white; }
247 th.gridbutton {
248   background-color: #d8d8d8;
249   color: #565c5e;
250   font-weight: bold;
251   white-space: nowrap;
252   margin: 5px 0px;
253   max-height: 24px;
254   padding: 5px 0px 5px 0px;
255   border-width: 1px;
256   border-style: solid;
257   border-color: black;
258 }
259 input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton {
260   text-decoration: none;
261   color: #565c5e;
262 }
263
264 /**
265  * Toolbar
266  */
267 .toolbar, input.button { 
268     font-family: Verdana, Arial, Helvetica, sans-serif; 
269 }
270
271 .toolbar {
272   padding: 0;
273   margin:  0;
274 }
275 .toolbar li {
276   margin-left: -20px; /* Because there is no list symbol */
277   list-style-type: none;
278   font-weight: bold;
279 }
280 .toolbar a {
281   text-decoration: none;
282 }
283
284 .edit-toolbar {
285   padding: 0;
286   margin:  0;
287 }
288 .edit-toolbar img, .edit-toolbar input {
289   background-color: #fff;
290   border: 1px solid ButtonFace;
291 }
292
293 .tooltitle {
294     font-weight: bold ;
295 }
296
297 #actionbuttons {
298   white-space: nowrap;
299 }
300
301 #actionbuttons .named-wiki,
302 #actionbuttons .wikiaction,
303 #actionbuttons .wikiadmin {
304   font-weight: normal;
305   color: #565c5e; /* Alcatel-Lucent grey */
306 }
307
308 #actionbuttons .named-wiki:hover,
309 #actionbuttons .wikiaction:hover,
310 #actionbuttons .wikiadmin:hover {
311   text-decoration: underline;
312 }
313
314 #actionbuttons td {
315     border: 1px solid #aaaaaa;
316     border-bottom: none;
317     border-collapse: collapse;
318     padding-left:0.8em;
319     padding-right:0.8em;
320 }
321
322 #actionbuttons td.spacer {
323     width:10px;
324     border:none;
325     padding-left:0;
326     padding-right:0;
327 }
328
329 #actionbuttons td.bold a {
330     font-weight: bold;
331 }
332
333 .editdate {
334   font-family: Verdana, Arial, Helvetica, sans-serif;
335   margin: 0;
336   padding: 0;
337   padding-top: 0.5ex;
338   border-top: 1px #aaaaaa solid;
339 }
340
341 #logo img {
342   float: right;
343   /* "paper" borders */
344   border-top:  1px #e8e6df solid;
345   border-left: 1px #e8e6df solid;
346   border-bottom: 1px #d2d2d2 solid;
347   border-right:  1px #b2b2b2 solid;
348 }
349
350 /**
351  * Edit Page & View Source
352  */
353
354 /* Make the textarea the full page width */
355 textarea.wikiedit {
356   width: 100%;
357   margin-bottom: 0.5ex;
358   margin-top:    0.5ex;
359   padding: 2px;
360 }
361
362 #editarea-size {
363   margin-top: 1ex;
364   text-align: right;
365   font-size: smaller;
366 }
367 #search-replace {
368   margin-top: 1ex;
369   text-align: left;
370   font-size: smaller;
371 }
372 #toolbar { padding:0px; }
373
374 /**
375  * Search Results
376  */
377 .search-context { background: white; }
378 .search-term {
379   background: yellow;
380   font-weight: normal;
381 }
382 #LSResult {
383   position: absolute;
384   text-align: left;
385   display: none;
386   z-index: 100;
387   background-color: white;
388   border: 1px solid #d0d0d0; 
389   font-size: 9px;
390   overflow: hidden;
391 }
392 #LSHighlight {
393   background-color: #f08000;
394 }
395 #LSResult .evenrow {
396   background-color: #f0f0f0;
397
398 #LSREsult .oddrow {
399
400 .LSEnd {
401   text-align: right;
402 }
403 .LSRow:hover {
404   background-color: white;
405 }
406 .LSRow {
407   padding: 1px;
408
409 ul.LSRes {
410   margin: 0px;
411   padding: 0px;
412 }
413 li.LSRow {
414   margin: 0px;
415   list-style-image: none;
416 }
417
418 /* PageTrail plugin =================================================== */
419
420 .pagetrail {
421      background-color: #FFFF99;
422      padding: 0.2em;
423 }
424
425 /* IncludePage plugin ================================================= */
426
427 .transclusion-title {
428   text-align: right;
429   font-style: oblique;
430   font-size:  smaller;
431   text-decoration: underline;
432   margin-bottom: 0.25ex;
433   margin-right:  0.25em;
434
435 .transclusion, .wiki-edithelp {
436   font-size: smaller;
437 }
438 .transclusion {
439   border: 1px solid gray;
440   padding-left:  0.8em; 
441   padding-right: 0.8em; 
442   padding-top:     0px;
443   padding-bottom:  0px;
444   margin-left:   0.25em;
445   margin-right:  0.25em;
446   margin-bottom: 0.1ex;
447 }
448 .wiki-edithelp {
449   background: white;
450   border: medium solid #fff8dc; /* darker ivory */
451   padding-left:  0.5em;
452   padding-right: 0.5em;
453   padding-top:    0.75ex;
454   padding-bottom: 0.75ex;
455   margin-left:  0;
456   margin-right: 0;
457   margin-top: 1ex;
458   margin-bottom: 1ex;
459 }
460 .wiki-edithelp p {
461   font-family: Verdana, Arial, Helvetica, sans-serif;
462   padding-left:  0.5em;
463   padding-right: 0.5em;
464   padding-top:    0.5ex;
465   padding-bottom: 0.5ex;
466   margin: 0;
467 }
468
469 /* Calendar plugin ==================================================== */
470
471 table.cal {
472   border: 1px outset gray;
473   background: white;
474   margin: 0.5ex 0.5em;
475   padding: 1px;
476   /* For Mozilla */
477   empty-cells: hide;
478
479
480 /* cells */
481 table.cal td {
482   background: white;
483   text-align: right;
484
485
486 /* Month-name header */
487 table.cal-header { font-size: larger; }
488 table.cal-header tr, table.cal-header td { text-align: center; }
489 .cal-arrow {
490   font-weight: bold;
491   text-decoration: none;
492 }
493
494 /* Day-names header */
495 table.cal tbody tr .cal-dayname {  }
496 .cal-dayname td {
497   text-align: center;
498   font-size: smaller;
499   text-decoration: underline;
500 }
501
502 /* Individual days */
503 a.cal-hide { text-decoration: none; }
504
505 /* Today */
506  /* cell */
507 table.cal td.cal-today {
508   margin: 1px;
509   border: 1px solid gray;
510 }
511  /* text */
512 table.cal td.cal-today a.cal-hide {  }
513
514 /* Diff plugin ======================================================== */
515
516 .diff .prefix {
517   position: relative;
518   left: -1em;
519 }
520 /* deleted & added words */
521 .diff del, .diff ins {
522   padding-left: 1px;
523   padding-right: 1px;
524 }
525
526 /* main box */
527 .diff {
528   margin-top:    1ex;
529   margin-bottom: 0.5ex;
530   background: white;
531   color: black;
532   border-top: 1px solid #494f5d;
533   border-left:  1px solid #494f5d;
534   border-bottom:  1px solid #c6d2de;
535   border-right: 1px solid #c6d2de;
536   padding-top:    1px;
537   padding-bottom: 1px;
538   padding-left:  .125em;
539   padding-right: .125em;
540   padding: 0;
541   clear: both;
542 }
543 .diff .block {
544   background: #ddd;
545   padding-left: 1em;
546 }
547
548 /* individual blocks */
549 .diff .context {
550   background: white;
551   border: none;
552 }
553 /* entire difftextblock */
554 .difftext {
555   margin-top:    0;
556   margin-bottom: 0;
557   background: white;
558   border-top:  1px #e8e6df solid;
559   border-left: 1px #e8e6df solid;
560   border-bottom: 1px #d2d2d2 solid;
561   border-right:  1px #b2b2b2 solid;
562   padding-left:  0em; 
563   padding-right: 0em;
564   padding-top:    0ex;
565   padding-bottom: 0ex;
566   clear: both;
567 }
568 /* + - line prefix */
569 .diff .block tt {
570   font-weight: normal;
571   font-family: monospace;
572   color: black;
573   margin-left: 0;
574   border: none;
575 }
576 /* changed words */
577 .diff del, .diff ins {
578   font-weight: bold;
579   text-decoration: none;
580 }
581
582 /* blocks containing deleted or added words */
583 .diff .original, .diff .deleted,
584 .diff .final, .diff .added {
585   background: white;
586 }
587 /* blocks containing deleted words */
588 .diff .original, .diff .deleted {
589   background: #fcc;
590   border: none;
591 }
592 /* blocks containing added words */
593 .diff .final, .diff .added {
594   background: #cfc;
595   border: none;
596 }
597
598 /* deleted words */
599 .diff del { background: #f99; }
600 /* added words */
601 .diff ins { background: #9f9; }
602
603 /* PageInfo plugin ==================================================== */
604
605 td.pageinfo { font-weight: bold; }
606 .pageinfo-minoredit, .pageinfo-authorid {
607   font-size: smaller;
608   font-style: oblique;
609 }
610
611 /* Banners ============================================================ */
612
613 .error, .warning, .debug, .hint {
614     font-weight: bold;
615     font-size: 11px;
616     text-align: left;
617     border-width: 2px;
618     border-style: solid;
619     padding: 0.5em;
620 }
621
622 .error {
623     background-color: #ffc0cb; /* pink */
624     border-color: red;
625 }
626
627 .warning {
628     background-color: #ffd297; /* orange */
629     border-color: #FFA500; /* orange */
630 }
631
632 .debug {
633     background-color: white;
634     border-color: #fff8dc; /* darker ivory */
635 }
636
637 .hint {
638     background-color: #eeeeee; 
639     border-color: black;
640 }
641
642 p.error, p.warning, p.debug, p.hint,
643 div.error div.warning, div.debug, div.hint {
644     border-radius: 1em;
645     -moz-border-radius: 1em;
646     -webkit-border-radius: 1em;
647 }
648
649 span.error, span.warning, span.debug, span.hint {
650   padding: 0;
651 }
652
653 /* Disabled Plugins  ================================================== */
654
655 .disabled-plugin {
656   clear: both;
657   margin: 1ex 0;
658   padding: 0;
659 }
660 .disabled-plugin .title {
661   color: #400;
662   background-color: inherit;
663   font-size: x-small;
664   text-align: right;
665   padding: 0 0.5em;
666 }
667 .disabled-plugin pre {
668   color: black;
669   background: #ddd;
670   margin: 0;
671   padding: 0.3ex 0.5em;
672 }
673
674 /* RedirectTo plugin ================================================== */
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  * "DL tables"
686  */
687 .wiki-dl-table {
688   border-collapse: collapse;
689   border: 2px #444 solid;
690 }
691 .wiki-dl-table tr {
692   border-top: 2px #444 solid;
693   border-bottom: 2px #444 solid;
694   border-left: none; 
695   border-right: none; 
696 }
697 .wiki-dl-table th,
698 .wiki-dl-table td {
699   padding: 0.25em 0.5em;
700 }
701 .wiki-dl-table th {
702   vertical-align: top;
703   text-align: right;
704   border-right: 1px #444 solid;
705   border-left: none;
706   border-top: none;
707   border-bottom: none;
708 }
709 .wiki-dl-table td {
710   border: none;
711 }
712
713 /*
714  * "E-mail" style blockquote
715  */
716 blockquote.mail-style-quote {
717     margin: 0em;
718     margin-bottom: 1em;
719     border: 1px solid #284;
720     padding: 0.5em;
721
722 .mail-style-quote blockquote.mail-style-quote {
723     margin-left: 0.3em;
724     margin-bottom : 0em;
725     background-color: transparent;
726     border-style: none;
727     border-left: medium solid #284;
728     padding: 0em;
729     padding-left: 0.5em;
730 }
731
732 /*
733  * wikiblog
734  */
735 .floatleft { float: left; }
736 .floatright { float: right; }
737
738 div.wikiblog {
739   margin: 1ex 2em;
740   padding: 0 0;
741 }
742 div.wikiblog > div {
743   margin: 0 0;
744   padding: 0.5ex 0.5em;
745 }
746 div.wikiblog-header {
747   /* background-color: #ccf; */
748 }
749 div.wikiblog > div.wikiblog-footer {
750   /* background-color: #eee; */
751   padding: 0.2ex 0.5em;
752 }
753 h3.wikiblog-summary {
754   font-size: medium;
755   font-weight: bold;
756   margin: 0 0 1ex 0;
757 }
758
759 table.wikiblog-form {
760   width: auto;
761   border-collapse: collapse;
762   margin: 0.25em 0;
763 }
764 .wikiblog-form caption {
765   caption-side: top;
766   font-weight: bold;
767   text-align: left;
768   padding: 0.5ex 0.5em;
769 }
770 .wikiblog-form th {
771   vertical-align: top;
772   text-align: right;
773   padding: 0 0 0.3em 0.5em;
774 }
775 .wikiblog-form td {
776   padding: 0.25em 0.5em;
777 }
778 .wikiblog-form td.submit-button {
779   padding: 0;
780 }
781 .wikiblog-form input[type=text],
782 .wikiblog-form textarea {
783   margin: 0 0;
784   width: 100%;
785 }
786 div.wikicomment div.wikicomment-footer {
787   padding: 0.2ex 0.5em;
788 }
789 div.wikicomment div.wikicomment-footer named-wiki {
790   font-size: small;
791 }
792 table.interwiki-map {
793   margin: 1em 2em;
794 }
795 .interwiki-map th {
796   text-decoration: underline;
797   text-align: left;
798   padding-left: 1em;
799 }
800 .interwiki-map td.interwiki-url {
801   padding-left: 2em;
802 }
803 .interwiki-map th.interwiki-url {
804   padding-left: 3em;
805 }
806
807 .dialog {
808   background-color: #cdf;
809   color: black;
810   margin: 2em auto 2em auto;
811   border: thin black solid;
812   width: 50%;
813 }
814 .dialog h1, .dialog p, .dialog div {
815   text-align: center;
816 }
817 .dialog h1 {
818   font-size: large;
819   margin: 0.5em 0 1em 0;
820 }
821 .dialog div.message {
822   background-color: white;
823   color: black;
824   color: black;
825   margin: 0 1em;
826   padding: 0.5em 0.5em;
827 }
828 .dialog p.buttons {
829   margin: 1em 0 0.5em 0;
830 }
831
832 .clear-floats {
833   clear: both;
834 }
835
836 /* postnuke css:*/
837 .gensmall{font-size:10px}
838 .genmed{font-size:11px}
839 td.cat{font-weight:bold;letter-spacing:1px;color:#000000;background: url(./images/cellpic1.png);height:27px}
840 /* Main table cell colours and backgrounds */
841 td.row1{background:#eaedf4;color:#000000}
842 td.row2{background:#d9e2ec;color:#000000}
843 td.row3{background:#cad9ea;color:#000000}
844 td.spacerow{background:#cad9ea;color:#000000}
845
846 /* This is the outline round the main forum tables */
847 .forumline{background:#ffffff;color:#000000;border:1px solid #006699}
848
849 /* Sidebar */
850 .box { background:#ffffff; border: 1px solid #888888 }
851 .box-title { font-weight: normal; background-color: #ccc; color: black; text-align: center; }
852 .box-data { width: 160px; font-size: 9pt; font-weight: normal; }
853 .box-data .wiki { font-weight: normal; }
854 td.sidebar { border-spacing: 0px; margin: 0ex;}
855
856 /* RssFeed */
857 div.rss { margin: 1em; padding: 1em; }
858 div.feed { margin: -0.5em; margin-bottom: 0em; padding: 0.3em;
859            font-weight: bold; font-size: 1.2em; }
860 .chandesc { font-weight: bold; }
861 div.rssitem { padding-top:1em; padding-bottom: 1em;
862               border-top: 2px solid #565c5e; /* Alcatel-Lucent grey */ }
863 div.itemname { padding-bottom: 1em; font-weight: bold; }
864 div.itemdesc { padding-left: 1em; }
865 div.authordate { font-style: italic; }
866 a.rssicon { font-weight:normal; font-size:small; vertical-align:middle; }
867
868 /* SqlResult */
869 table.sqlresult {
870   border: 1px outset gray;
871   background: white;
872   margin: 0.5ex 0.5em;
873   padding: 1px;
874 }
875 .sqlresult tr.evenrow { background: #eee; }
876 .sqlresult tr.oddrow  { background: white; }
877 table.sqlresult td {
878   margin: 1px;
879   border: 1px solid gray;
880 }
881
882 /* TeX2png plugin ===================================================== */
883
884 img.tex { 
885   vertical-align: middle; 
886 }
887
888 /* PhotoAlbum plugin ================================================== */
889
890 .boldsmall {
891   font-weight: bold;
892   font-size: 11px;
893 }
894
895 #content {
896     margin: 0;
897     padding: 1em 1em 1.5em 1em;
898     border: 1px solid #aaaaaa;
899     line-height: 1.2em;
900     position: relative;
901     z-index: 2;
902 }
903
904 /* the left column width is specified in class .portlet */
905
906 #footer {
907     text-align: right;
908     vertical-align: bottom;
909     font-style: italic;
910 }
911
912 /*
913  * table class="boxed"
914  * will put a border around the table (but not around the cells)
915  *
916  * table class="bordered"
917  * will put a border around the table and the cells
918  *
919  * In both cases, the caption will be bold and centered under the table
920  *
921  * In both cases, the headers (th) will have a "#d8d8d8" background
922  */
923
924 table.boxed, table.bordered, table.bordered th, table.bordered td {
925     border-width: 1px;
926     border-style: solid;
927     border-collapse: collapse;
928     vertical-align: top;
929 }
930
931 table.boxed td, table.bordered td,
932 table.boxed th, table.bordered th {
933     padding-left: 5px;
934     padding-right: 5px;
935     padding-top: 0px;
936     padding-bottom: 0px;
937 }
938
939 table.boxed caption, table.bordered caption {
940     text-align: center;
941     font-weight: bold;
942     caption-side: bottom;
943     padding-top: 0.8em;
944 }
945
946 table.boxed th, table.bordered th {
947     font-weight: bold;
948     background-color: #d8d8d8;
949 }
950
951 /* BoxRight plugin ==================================================== */
952
953 div.boxright {
954   background-color: #e9fbff;
955   width: 200px; 
956   right: 10px;
957   padding: 0.5em; 
958   float: right; 
959   border: thin solid; 
960   padding: 0.5em;
961 }
962
963 td.tdselected, td.tdunselected {
964    text-align: center;
965    font-weight: bold;
966    padding-left: 5px;
967    padding-right: 5px;
968 }
969
970 td.tdselected {
971    color: white;
972    background-color: #554295;
973 }
974
975 td.tdunselected {
976    color: black;
977    background-color: #e9e8de;
978 }
979
980 /* Main wiki browse banner */
981 .browsebanner table {
982    width: 100%;
983    background-color: #e9fbff;
984    border-style: solid;
985    border-color: blue;
986    border-width: 2px;
987 }
988
989 .browsebanner table td {
990    text-align: center;
991    font-weight: bold;
992    font-style: oblique;
993 }
994
995 /* RateIt plugin ====================================================== */
996
997 .rateit {
998    font-size: 60%;
999    font-weight: bold;
1000    vertical-align: middle;
1001 }
1002
1003 /* For emacs users
1004  *
1005  * Local Variables:
1006  * mode: c
1007  * c-file-style: cc-mode
1008  * End:
1009  */