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