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