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