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