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