]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/fusionforge/fusionforge.css
Update WikiAdminSearchReplace plugin
[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 menu, menu ul {
411     padding: 0;
412 }
413
414 menu ul {
415     display: inline;
416     margin-right: 10px;
417 }
418
419 #actionbuttons {
420     white-space: nowrap;
421     margin-left: 0;
422     margin-bottom: 0;
423 }
424
425 #actionbuttons .named-wiki,
426 #actionbuttons .wikiaction,
427 #actionbuttons .wikiadmin {
428     font-weight: normal;
429     color: #565c5e; /* Alcatel-Lucent grey */
430 }
431
432 #actionbuttons .named-wiki:hover,
433 #actionbuttons .wikiaction:hover,
434 #actionbuttons .wikiadmin:hover {
435     text-decoration: underline;
436 }
437
438 #actionbuttons li {
439     display: inline;
440     border: 1px solid #aaaaaa;
441     border-bottom: none;
442     border-collapse: collapse;
443     padding-left: 0.8em;
444     padding-right: 0.8em;
445     margin-right: 10px;
446 }
447
448 /* Smaller for IE6 and IE7: else moves the area down */
449 .ie67 #actionbuttons li {
450     padding-left: 0.2em;
451     padding-right: 0.2em;
452     margin-right: 5px;
453 }
454
455 #actionbuttons li.bold a {
456     font-weight: bold;
457 }
458
459 .editdate {
460     font-family: Verdana, Arial, Helvetica, sans-serif;
461     margin: 0;
462     padding: 0;
463     border-top: 1px #aaaaaa solid;
464 }
465
466 #logo img {
467     float: right;
468     /* "paper" borders */
469     border: 1px solid #e8e6df;
470     border-right-color: #b2b2b2;
471     border-bottom-color: #d2d2d2;
472 }
473
474 /**
475  * Edit Page & View Source
476  */
477
478 /* Make the textarea the full page width */
479 textarea.wikiedit {
480     width: 100%;
481     margin-bottom: 0.5ex;
482     margin-top: 0.5ex;
483     padding: 2px;
484 }
485
486 /* Not for IE6 and IE7: moves the area down */
487 .ie67 textarea.wikiedit {
488     width: auto;
489 }
490
491 #editarea-size {
492     margin-top: 1ex;
493     text-align: right;
494     font-size: smaller;
495 }
496
497 #search-replace {
498     margin-top: 1ex;
499     text-align: left;
500     font-size: smaller;
501 }
502
503 /**
504  * Search Results
505  */
506 .search-context {
507     background: white;
508 }
509
510 .search-term {
511     background: yellow;
512     font-weight: normal;
513 }
514
515 #LSResult {
516     position: absolute;
517     text-align: left;
518     display: none;
519     z-index: 100;
520     background-color: white;
521     border: 1px solid #d0d0d0;
522     font-size: 9px;
523     overflow: hidden;
524 }
525
526 #LSResult .evenrow {
527     background-color: #f0f0f0;
528 }
529
530 /* PageTrail plugin =================================================== */
531
532 .pagetrail {
533     background-color: #FFFF99;
534     padding: 0.2em;
535 }
536
537 /* IncludePage plugin ================================================= */
538
539 .transclusion-title {
540     text-align: right;
541     font-style: oblique;
542     font-size: smaller;
543     text-decoration: underline;
544     margin-bottom: 0.25ex;
545     margin-right: 0.25em;
546 }
547
548 .transclusion, .wiki-edithelp {
549     font-size: smaller;
550 }
551
552 .transclusion {
553     border: 1px solid gray;
554     padding: 0 0.8em;
555     margin-left: 0.25em;
556     margin-right: 0.25em;
557     margin-bottom: 0.1ex;
558 }
559
560 .wiki-edithelp {
561     background: white;
562     border: medium solid #fff8dc; /* darker ivory */
563     padding: 0.75ex 0.5em;
564     margin: 1ex 0;
565 }
566
567 .wiki-edithelp p {
568     font-family: Verdana, Arial, Helvetica, sans-serif;
569     padding: 0.5ex 0.5em;
570     margin: 0;
571 }
572
573 /* Calendar plugin ==================================================== */
574
575 table.cal {
576     border: 1px outset gray;
577     background: white;
578     margin: 0.5ex 0.5em;
579     padding: 1px;
580     /* For Mozilla */
581     empty-cells: hide;
582 }
583
584 /* cells */
585 table.cal td {
586     background: white;
587     text-align: right;
588 }
589
590 /* Month-name header */
591 table.cal-header {
592     font-size: larger;
593 }
594
595 table.cal-header tr, table.cal-header td {
596     text-align: center;
597 }
598
599 .cal-arrow {
600     font-weight: bold;
601     text-decoration: none;
602 }
603
604 /* Day-names header */
605 table.cal tbody tr .cal-dayname {
606 }
607
608 .cal-dayname td {
609     text-align: center;
610     font-size: smaller;
611     text-decoration: underline;
612 }
613
614 /* Individual days */
615 a.cal-hide {
616     text-decoration: none;
617 }
618
619 /* Today */
620 /* cell */
621 table.cal td.cal-today {
622     margin: 1px;
623     border: 1px solid gray;
624 }
625
626 /* text */
627 table.cal td.cal-today a.cal-hide {
628 }
629
630 /* Diff plugin ======================================================== */
631
632 .diff .prefix {
633     position: relative;
634     left: -1em;
635 }
636
637 /* deleted & added words */
638 .diff del, .diff ins {
639     padding-left: 1px;
640     padding-right: 1px;
641 }
642
643 /* main box */
644 .diff {
645     margin-top: 1ex;
646     margin-bottom: 0.5ex;
647     background: white;
648     color: black;
649     border: 1px solid #494f5d;
650     border-right-color: #c6d2de;
651     border-bottom-color: #c6d2de;
652
653     padding: 0;
654     clear: both;
655 }
656
657 .diff .block {
658     background: #ddd;
659     padding-left: 1em;
660 }
661
662 /* individual blocks */
663 .diff .context {
664     background: white;
665     border: none;
666 }
667
668 /* entire difftextblock */
669 .difftext {
670     margin-top: 0;
671     margin-bottom: 0;
672     background: white;
673     border: 1px solid #e8e6df;
674     border-right-color: #b2b2b2;
675     border-bottom-color: #d2d2d2;
676     padding: 0;
677     clear: both;
678 }
679
680 /* + - line prefix */
681 .diff .block tt {
682     font-weight: normal;
683     font-family: monospace;
684     color: black;
685     margin-left: 0;
686     border: none;
687 }
688
689 /* changed words */
690 .diff del, .diff ins {
691     font-weight: bold;
692     text-decoration: none;
693 }
694
695 /* blocks containing deleted or added words */
696 .diff .original, .diff .deleted,
697 .diff .final, .diff .added {
698     background: white;
699 }
700
701 /* blocks containing deleted words */
702 .diff .original, .diff .deleted {
703     background: #fcc;
704     border: none;
705 }
706
707 /* blocks containing added words */
708 .diff .final, .diff .added {
709     background: #cfc;
710     border: none;
711 }
712
713 /* deleted words */
714 .diff del {
715     background: #f99;
716 }
717
718 /* added words */
719 .diff ins {
720     background: #9f9;
721 }
722
723 /* PageInfo plugin ==================================================== */
724
725 td.pageinfo {
726     font-weight: bold;
727 }
728
729 .pageinfo-minoredit, .pageinfo-authorid {
730     font-size: smaller;
731     font-style: oblique;
732 }
733
734 /* Banners ============================================================ */
735
736 p.success, p.feedback, p.warning, p.warning_msg, p.error, p.information,
737 div.success, div.feedback, div.warning, div.warning_msg, div.error, div.information {
738     font-weight: bold;
739     font-size: 12px;
740     text-align: center;
741     border: 1px solid;
742     margin: 15px 0;
743     padding: 10px 10px 10px 10px;
744 }
745
746 .success, .feedback {
747     border-color: green;
748     background-color: #DFF2BF;
749 }
750
751 .warning_msg, .warning {
752     border-color: orange;
753     background-color: #FEEFB3;
754 }
755
756 .error {
757     border-color: red;
758     background-color: #FFBABA;
759 }
760
761 .information {
762     border-color: blue;
763     background-color: #BDE5F8;
764 }
765
766 p.success, p.feedback,
767 p.warning, p.warning_msg,
768 p.error,
769 p.information,
770 div.success, div.feedback,
771 div.warning, div.warning_msg,
772 div.error,
773 div.information {
774     text-align: left;
775     background-repeat: no-repeat;
776     background-position: 10px;
777     -moz-border-radius: 1em;
778     -webkit-border-radius: 1em;
779     border-radius: 1em;
780     padding: 10px 10px 10px 50px;
781 }
782
783 div.success, div.feedback,
784 p.success, p.feedback {
785     color: #4F8A10;
786     background-image: url('/themes/base-alcatel-lucent/images/success.png');
787 }
788
789 div.feedback p, div.feedback li,
790 div.success p, div.success li {
791     color: #4F8A10;
792 }
793
794 div.warning, div.warning_msg,
795 p.warning, p.warning_msg {
796     color: #9F6000;
797     background-image: url('/themes/base-alcatel-lucent/images/warning.png');
798 }
799
800 div.warning p, div.warning_msg p,
801 div.warning li, div.warning_msg li {
802     color: #9F6000;
803 }
804
805 div.error,
806 p.error {
807     color: #D8000C;
808     background-image: url('/themes/base-alcatel-lucent/images/error.png');
809 }
810
811 div.error p,
812 div.error li {
813     color: #D8000C;
814 }
815
816 div.information,
817 p.information {
818     color: #00529B;
819     background-image: url('/themes/base-alcatel-lucent/images/info.png');
820 }
821
822 .error, .warning, .debug, .hint {
823     font-weight: bold;
824     font-size: 11px;
825     text-align: left;
826     border: 1px solid;
827     padding: 0.5em;
828 }
829
830 .debug {
831     background-color: white;
832     border-color: #fff8dc; /* darker ivory */
833 }
834
835 .hint {
836     background-color: #eeeeee;
837     border-color: black;
838 }
839
840 span.error, span.warning, span.debug, span.hint {
841     padding: 0;
842 }
843
844 /* Disabled Plugins  ================================================== */
845
846 .disabled-plugin {
847     clear: both;
848     margin: 1ex 0;
849     padding: 0;
850 }
851
852 .disabled-plugin .title {
853     color: #400;
854     background-color: inherit;
855     font-size: x-small;
856     text-align: right;
857     padding: 0 0.5em;
858 }
859
860 .disabled-plugin pre {
861     color: black;
862     background: #ddd;
863     margin: 0;
864     padding: 0.3ex 0.5em;
865 }
866
867 /* RedirectTo plugin ================================================== */
868
869 /* "(Redirected from ...)" message. */
870 span.redirectfrom {
871     font-size: small;
872     font-style: oblique;
873     font-weight: normal;
874     padding-left: 1em;
875 }
876
877 /*
878  * "DL tables"
879  */
880 .wiki-dl-table {
881     border-collapse: collapse;
882     border: 2px #444 solid;
883 }
884
885 .wiki-dl-table tr {
886     border-top: 2px #444 solid;
887     border-bottom: 2px #444 solid;
888     border-left: none;
889     border-right: none;
890 }
891
892 .wiki-dl-table th,
893 .wiki-dl-table td {
894     padding: 0.25em 0.5em;
895 }
896
897 .wiki-dl-table th {
898     vertical-align: top;
899     text-align: right;
900     border-style: none;
901     border-right: 1px solid #444;
902 }
903
904 .wiki-dl-table td {
905     border: none;
906 }
907
908 /*
909  * "E-mail" style blockquote
910  */
911 blockquote.mail-style-quote {
912     margin: 0;
913     border: 1px solid #284;
914     padding: 0.5em;
915 }
916
917 .mail-style-quote blockquote.mail-style-quote {
918     margin-left: 0.3em;
919     margin-bottom: 0;
920     background-color: transparent;
921     border-style: none;
922     border-left: medium solid #284;
923     padding: 0;
924 }
925
926 /*
927  * wikiblog
928  */
929 .floatleft {
930     float: left;
931 }
932
933 .floatright {
934     float: right;
935 }
936
937 div.wikiblog {
938     margin: 1ex 2em;
939     padding: 0 0;
940 }
941
942 div.wikiblog > div {
943     margin: 0 0;
944     padding: 0.5ex 0.5em;
945 }
946
947 div.wikiblog-header {
948     /* background-color: #ccf; */
949 }
950
951 div.wikiblog > div.wikiblog-footer {
952     /* background-color: #eee; */
953     padding: 0.2ex 0.5em;
954 }
955
956 h3.wikiblog-summary {
957     font-size: medium;
958     font-weight: bold;
959     margin: 0 0 1ex 0;
960 }
961
962 table.wikiblog-form {
963     width: auto;
964     border-collapse: collapse;
965     margin: 0.25em 0;
966 }
967
968 .wikiblog-form caption {
969     caption-side: top;
970     font-weight: bold;
971     text-align: left;
972     padding: 0.5ex 0.5em;
973 }
974
975 .wikiblog-form th {
976     vertical-align: top;
977     text-align: right;
978     padding: 0 0 0.3em 0.5em;
979 }
980
981 .wikiblog-form td {
982     padding: 0.25em 0.5em;
983 }
984
985 .wikiblog-form td.submit-button {
986     padding: 0;
987 }
988
989 .wikiblog-form input[type=text],
990 .wikiblog-form textarea {
991     margin: 0 0;
992     width: 100%;
993 }
994
995 div.wikicomment div.wikicomment-footer {
996     padding: 0.2ex 0.5em;
997 }
998
999 div.wikicomment div.wikicomment-footer named-wiki {
1000     font-size: small;
1001 }
1002
1003 table.interwiki-map {
1004     margin: 1em 2em;
1005 }
1006
1007 .interwiki-map th {
1008     text-decoration: underline;
1009     text-align: left;
1010     padding-left: 1em;
1011 }
1012
1013 .interwiki-map td.interwiki-url {
1014     padding-left: 2em;
1015 }
1016
1017 .interwiki-map th.interwiki-url {
1018     padding-left: 3em;
1019 }
1020
1021 .dialog {
1022     background-color: #cdf;
1023     color: black;
1024     margin: 2em auto 2em auto;
1025     border: thin black solid;
1026     width: 50%;
1027 }
1028
1029 .dialog h1, .dialog p, .dialog div {
1030     text-align: center;
1031 }
1032
1033 .dialog h1 {
1034     font-size: large;
1035     margin: 0.5em 0 1em 0;
1036 }
1037
1038 .dialog div.message {
1039     background-color: white;
1040     color: black;
1041     color: black;
1042     margin: 0 1em;
1043     padding: 0.5em 0.5em;
1044 }
1045
1046 .dialog p.buttons {
1047     margin: 1em 0 0.5em 0;
1048 }
1049
1050 .clear-floats {
1051     clear: both;
1052 }
1053
1054 /* postnuke css:*/
1055 .gensmall {
1056     font-size: 10px
1057 }
1058
1059 .genmed {
1060     font-size: 11px
1061 }
1062
1063 td.cat {
1064     font-weight: bold;
1065     letter-spacing: 1px;
1066     color: #000000;
1067     background: url(./images/cellpic1.png);
1068     height: 27px
1069 }
1070
1071 /* Main table cell colours and backgrounds */
1072 td.row1 {
1073     background: #eaedf4;
1074     color: #000000
1075 }
1076
1077 td.row2 {
1078     background: #d9e2ec;
1079     color: #000000
1080 }
1081
1082 td.row3 {
1083     background: #cad9ea;
1084     color: #000000
1085 }
1086
1087 td.spacerow {
1088     background: #cad9ea;
1089     color: #000000
1090 }
1091
1092 /* This is the outline round the main forum tables */
1093 .forumline {
1094     background: #ffffff;
1095     color: #000000;
1096     border: 1px solid #006699
1097 }
1098
1099 /* Sidebar */
1100 .box {
1101     background: #ffffff;
1102     border: 1px solid #888888
1103 }
1104
1105 .box-title {
1106     font-weight: normal;
1107     background-color: #ccc;
1108     color: black;
1109     text-align: center;
1110 }
1111
1112 .box-data {
1113     width: 160px;
1114     font-size: 9pt;
1115     font-weight: normal;
1116 }
1117
1118 .box-data .wiki {
1119     font-weight: normal;
1120 }
1121
1122 td.sidebar {
1123     border-spacing: 0;
1124     margin: 0;
1125 }
1126
1127 /* RssFeed */
1128 div.rss {
1129     margin: 1em;
1130     padding: 1em;
1131 }
1132
1133 div.feed {
1134     margin: -0.5em;
1135     padding: 0.3em;
1136     font-weight: bold;
1137     font-size: 1.2em;
1138 }
1139
1140 .chandesc {
1141     font-weight: bold;
1142 }
1143
1144 div.rssitem {
1145     padding-top: 1em;
1146     padding-bottom: 1em;
1147     border-top: 2px solid #565c5e; /* Alcatel-Lucent grey */
1148 }
1149
1150 div.itemname {
1151     padding-bottom: 1em;
1152     font-weight: bold;
1153 }
1154
1155 div.itemdesc {
1156     padding-left: 1em;
1157 }
1158
1159 div.authordate {
1160     font-style: italic;
1161 }
1162
1163 a.rssicon {
1164     font-weight: normal;
1165     font-size: small;
1166     vertical-align: middle;
1167 }
1168
1169 /* SqlResult */
1170 table.sqlresult {
1171     border: 1px outset gray;
1172     background: white;
1173     margin: 0.5ex 0.5em;
1174     padding: 1px;
1175 }
1176
1177 .sqlresult tr.evenrow {
1178     background: #eee;
1179 }
1180
1181 .sqlresult tr.oddrow {
1182     background: white;
1183 }
1184
1185 table.sqlresult td {
1186     margin: 1px;
1187     border: 1px solid gray;
1188 }
1189
1190 /* TeX2png plugin ===================================================== */
1191
1192 img.tex {
1193     vertical-align: middle;
1194 }
1195
1196 /* PhotoAlbum plugin ================================================== */
1197
1198 .boldsmall {
1199     font-weight: bold;
1200     font-size: 11px;
1201 }
1202
1203 #content {
1204     margin: 0;
1205     padding: 1em 1em 1.5em 1em;
1206     border: 1px solid #aaaaaa;
1207     line-height: 1.2em;
1208     position: relative;
1209     z-index: 2;
1210 }
1211
1212 /* the left column width is specified in class .portlet */
1213
1214 #footer {
1215     text-align: right;
1216     vertical-align: bottom;
1217     font-style: italic;
1218 }
1219
1220 /* WikicreoleTable, MediawikiTable and RichTable plugins ============== */
1221
1222 /*
1223  * table class="boxed"
1224  * will put a border around the table (but not around the cells)
1225  *
1226  * table class="bordered"
1227  * will put a border around the table and the cells
1228  *
1229  * In both cases, the caption will be bold and centered under the table
1230  *
1231  * In both cases, the headers (th) will have a "#d8d8d8" background
1232  */
1233
1234 table.boxed, table.bordered, table.bordered th, table.bordered td {
1235     border: 1px solid;
1236     border-collapse: collapse;
1237     vertical-align: top;
1238 }
1239
1240 table.boxed td, table.bordered td,
1241 table.boxed th, table.bordered th {
1242     padding: 0 5px;
1243 }
1244
1245 table.boxed caption, table.bordered caption {
1246     text-align: center;
1247     font-weight: bold;
1248     caption-side: bottom;
1249     padding-top: 0.8em;
1250 }
1251
1252 table.boxed th, table.bordered th {
1253     font-weight: bold;
1254     background-color: #d8d8d8;
1255 }
1256
1257 /* BoxRight plugin ==================================================== */
1258
1259 div.boxright {
1260     background-color: #e9fbff;
1261     width: 200px;
1262     right: 10px;
1263     float: right;
1264     border: thin solid;
1265     padding: 0.5em;
1266 }
1267
1268 td.tdselected, td.tdunselected {
1269     text-align: center;
1270     font-weight: bold;
1271     padding-left: 5px;
1272     padding-right: 5px;
1273 }
1274
1275 td.tdselected {
1276     color: white;
1277     background-color: #554295;
1278 }
1279
1280 td.tdunselected {
1281     color: black;
1282     background-color: #e9e8de;
1283 }
1284
1285 /* Main wiki browse banner */
1286
1287 .browsebanner {
1288     clear: both;
1289 }
1290
1291 .browsebanner table {
1292     width: 100%;
1293     background-color: #e9fbff;
1294     border: 2px solid blue;
1295 }
1296
1297 .browsebanner table td {
1298     text-align: center;
1299     font-weight: bold;
1300     font-style: oblique;
1301 }
1302
1303 /* RateIt plugin ====================================================== */
1304
1305 .rateit {
1306     font-size: 60%;
1307     font-weight: bold;
1308     vertical-align: middle;
1309 }
1310
1311 /* For emacs users
1312  *
1313  * Local Variables:
1314  * mode: c
1315  * c-file-style: cc-mode
1316  * End:
1317  */