]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/MacOSX/MacOSX.css
Activated Id substitution for Subversion
[SourceForge/phpwiki.git] / themes / MacOSX / MacOSX.css
1 /*
2  $Id$
3
4  Classes:
5
6  div.wikitext - the transformed wiki page text.
7
8  a.wiki             - link to page in wiki.
9  a.named-wiki       - a named link to page in wiki (from e.g. [name|WikiPage]).
10  a.interwiki        - link to page in another wiki
11  span.wikipage    - page name within interwiki link.
12  a.named-interwiki  - link to page in another wiki
13  a.url              - link to external URL from wiki page.
14  a.named-url        - link to external URL from wiki page.
15
16  .wikiunknown a, .wikiunknown u
17  .named-wikiunknown a, .named-wikiunknown u
18
19  a.wikiaction
20  a.wikiadmin
21  .wikiunsafe
22
23  a.backlinks
24
25  TODO: Get rid of tables in wikiaction forms.
26  */
27
28 /* NS4 doesn't grok @import.  This allows us to put things which
29  * break NS4 in another file. */
30 @import url(MacOSX-heavy.css);
31
32 body { background: #fafafa url("images/bgpaper8.png"); }
33 body.edit { background: #fafafa url("images/bggranular.png"); }
34
35 body { }
36
37 /* Ensure identical vertical alignment for adjacent form buttons,
38    whether image based (Theme buttons) or not */
39 input[type=submit],
40 input[type=cancel],
41 input[type=image] { vertical-align: middle }
42
43 /*
44  * NS4, defaults from body don't always propagate correctly.
45  * So we need this:
46  */
47 h1, h2, h3, .toolbar, td { font-family: "Lucida Grande", Helvetica, Arial, sans-serif; }
48
49 input.button { font-family: "Lucida Grande", Helvetica, Arial, sans-serif; }
50
51 input.numeric {
52   text-align: right;
53 }
54 .wikitext pre { font-family: Monaco, monospace; }
55
56
57
58
59 input[type=text] {
60   border-top:    1px solid #7c7c7c;
61   border-left:   1px solid #c3c3c3;
62   border-bottom: 1px solid #dddddd;
63   border-right:  1px solid #c3c3c3;
64 }
65
66 /* Add space between the input field and following buttons, but not after the last button. */
67 div.wikiaction input[type=text],
68 div.wikiadmin input[type=text],
69 form.wikiadmin input[type=file] {
70   margin-right: 0.5em;
71 }
72
73
74
75 /**
76  * Wiki
77  */
78 div.wikitext {
79   background: white;
80   /* for NS4 */
81   border: 1px solid black;
82
83   border-top:    1px solid #7c7c7c;
84   border-left:   1px solid #c3c3c3;
85   border-bottom: 1px solid #dddddd;
86   border-right:  1px solid #c3c3c3;
87   padding-left: 0.8em;
88   padding-right: 0.8em;
89   padding-top: 0.5em;
90   padding-bottom: 0.5em;
91   margin: 0.5ex 0px;
92   /* This breaks Netscape 4: (display does not go full width).
93   width: auto;
94   */
95 clear: both;
96 }
97
98 input.wikitext { margin:0px; }
99 input[type=text] {
100   height: 2.7ex;
101   padding: 0.4ex 0.3ex;
102 }
103
104 div.toolbar { margin: 1ex 0ex; }
105
106
107 /**
108  * PageTypes
109  */
110 .interwiki-map thead td {
111   background: #e8e8e8;
112   font-weight: bold;
113   font-size: smaller;
114 }
115 .interwiki-map thead td:first-child { text-decoration: underline; }
116 .interwiki-moniker { background: #eee; }
117 .interwiki-url { background: #f8f8f8; }
118
119
120 /* Mozilla RecentChanges Sidebar */
121 body.sidebar {
122   font-size: smaller;
123   margin: 0.5em;
124 }
125 body.sidebar div.wikitext {
126   padding: 0.5em;
127 }
128 body.sidebar div.wikitext ul { padding-left: 1em; }
129 body.sidebar h2 { margin-top: 0; }
130
131
132 div.errors {
133   background: #eee;
134   border: 1px solid gray;
135   padding-left: 0.8em;
136   padding-right: 0.8em;
137   padding-top: 0.8ex;
138   padding-bottom: 0;
139   margin-top: 1em;
140   clear: both;
141   font-size: smaller;
142 }
143
144 .errors h4 {
145   color: black;
146   text-decoration: underline;
147   font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
148   margin-top: 0;
149   margin-bottom: 0.5ex;
150 }
151
152 .error {
153   font-family: Monaco, monospace;
154   margin: 0;
155   font-size: smaller;
156 }
157 .error ul {
158   font-size: smaller;
159   font-family: Monaco, monospace;
160 }
161 /* Debug */
162 .debug {
163   color: black;
164   background: white;
165   font-family: monospace;
166   font-size: smaller;
167   margin: 1ex 0;
168   padding: 0.5ex 0.5em;
169   border: 1px solid #eee;
170 }
171
172
173 /*
174  * Style for <hr>s in wiki markup.
175  */
176 .wikitext hr {}
177
178
179 /*
180  * Link styles
181  */
182 /* Wiki Links */
183 a.wiki { text-decoration: none; }
184 .wiki, .named-wiki { font-weight: bold; color:#1d42be; } /*blue*/
185 /* This is obscene in NS4
186   b .wiki, STRONG .wiki { font-size: larger; }
187  */
188
189 /* Unknown links */
190 .wikiunknown a, .named-wikiunknown a, .wikiunknown U { text-decoration: none; }
191
192 .wikiunknown, .named-wikiunknown {color: #555; }
193
194 /* Interwiki links */
195 a.interwiki { text-decoration: none; }
196 .wikipage   { font-weight: bold; }
197
198 .interwiki,
199 i .interwiki .wikipage, em .interwiki .wikipage { font-style: oblique; }
200
201 .interwiki .wikipage,
202 i .interwiki, em .interwiki { font-style: normal; }
203
204 /*
205  * wikiaction, wikiadmin, wikiunsafe:
206  */
207 a.wikiaction, a.wikiadmin { text-decoration: none; }
208
209 /*
210  * No border on external link icons.
211  */
212 img.linkicon, img.rssicon { border: 0px; }
213 img.rssicon { vertical-align: middle; }
214 /* This screws up NS4, moved to phpwiki-heavy.css
215 img.linkicon { vertical-align: middle; }
216 */
217 img.wiki-button { vertical-align: middle; }
218
219 a.wikiaction { border: 0; }
220
221 /* backlinks */
222 a.backlinks { color: #006; }
223
224 /* Make the textarea on the edit page full width */
225 textarea.wikiedit { width: 100%; margin-top: 1ex; }
226
227 p.editdate { font-size: smaller; margin-bottom: 0; font-family: "Lucida Grande", Helvetica, Arial, sans-serif; }
228
229 /* Calendar plugin */
230 a.cal-hide,
231 a.cal-arrow { text-decoration: none; }
232 .cal-arrow { font-weight: bold; }
233 .cal-dayname {
234   font-size: smaller;
235   text-decoration: none;
236 }
237 table.cal {
238   /* for NS4 */
239   /*border: 1px solid black;
240
241   border-top:    1px solid #7c7c7c;
242   border-left:   1px solid #c3c3c3;
243   border-bottom: 1px solid #dddddd;
244   border-right:  1px solid #c3c3c3;
245   background: #bebebe;*/
246 }
247 table.cal td {
248   background: white;
249   /* for NS4 */
250   border: 1px solid black;
251
252   border-top:    1px solid #7c7c7c;
253   border-left:   1px solid #c3c3c3;
254   border-bottom: 1px solid #dddddd;
255   border-right:  1px solid #c3c3c3;
256 }
257 table.cal-header td {
258   font-size:  larger;
259   background: white;
260   border: 0px;
261 }
262 table.cal td.cal-dayname { background: #e8e8e8; }
263 table.cal td.cal-today {
264   background:    #f4f4f4;
265   /* for NS4 */
266   border: 1px solid black;
267
268   border-top:    1px solid #7c7c7c;
269   border-left:   1px solid #c3c3c3;
270   border-bottom: 1px solid #dddddd;
271   border-right:  1px solid #c3c3c3;
272 }
273
274 /* IncludePage plugin */
275 .transclusion-title {
276   font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
277   /* font-style: oblique; */
278   font-size: smaller; /* 0.75em; */
279   text-decoration: underline;
280   text-align: right;
281 }
282
283 div.transclusion {
284   /* background: #fff url("images/bgpaper8.png"); */
285   /* background: white; */
286   background: #fdfdfd;
287   /* for NS4 */
288   border: 1px solid black;
289
290   border-top:    1px solid #7c7c7c;
291   border-left:   1px solid #c3c3c3;
292   border-bottom: 1px solid #dddddd;
293   border-right:  1px solid #c3c3c3;
294
295   padding-left:  0.8em;
296   padding-right: 0.8em;
297   padding-top:    0px;
298   padding-bottom: 0px;
299   margin: 0.5ex ;
300 }
301
302 /* The transclusion of the TextEditingRules Synopsis on templates/editpage.html */
303 div.wiki-edithelp .transclusion {
304   font-size: smaller;
305   background: inherit;
306   padding: 0.5ex 0.5em;
307   margin: 0.2ex 5%;
308 }
309 div.wiki-edithelp .transclusion p { margin: 0; }
310 div.wiki-edithelp {
311   /* background: #fff url("images/bgpaper8.png"); */
312   background: white;
313   /* for NS4 */
314   border: 1px solid black;
315
316   border-top:    1px solid #7c7c7c;
317   border-left:   1px solid #c3c3c3;
318   border-bottom: 1px solid #dddddd;
319   border-right:  1px solid #c3c3c3;
320
321   font-size: smaller;
322   padding: 6pt;
323 }
324 div.wiki-message {
325   background: #fff url("images/bggranular.png");
326   border: solid 1px #d8d8d8;
327   padding: 6pt;
328 }
329 .printer { display: none; }
330
331
332 /**
333  * Diff Output
334  */
335 /* main box */
336 .diff {
337   background: white;
338   /* for NS4 */
339   border: 1px solid black;
340
341   border-top:    1px solid #7c7c7c;
342   border-left:   1px solid #c3c3c3;
343   border-bottom: 1px solid #dddddd;
344   border-right:  1px solid #c3c3c3;
345 }
346 .diff .block {
347   background: #d8d8d8;
348   /* for NS4 */
349   /*  border: none;*/
350 }
351
352 /* individual blocks */
353 .diff .context {
354   background: white;
355   /* for NS4 */
356   border: none;
357 }
358 /* + - line prefix */
359 .diff .block tt.prefix {
360   font-weight: normal;
361   font-family: monospace;
362   margin-left: -1.6em;
363   color: black;
364   /* for NS4 */
365   border: none;
366 }
367 /* changed words */
368 .diff ins { font-weight: bolder; }
369 .diff ins { text-decoration: none; }
370
371 /* blocks containing deleted or added words */
372 .diff .original,
373 .diff .deleted,
374 .diff .final,
375 .diff .added {
376   background: white;
377 }
378 /* blocks containing deleted words */
379 .diff .original:first-child,
380 .diff .deleted:first-child {
381   border-top: 2px solid #f99; /* fcc */
382 }
383 .diff .original,
384 .diff .deleted {
385   background: white;
386   border-left: 2px solid #f99; /* fcc */
387   border-right: 2px solid #f99; /* fcc */
388 }
389 .diff .original:last-child,
390 .diff .deleted:last-child {
391   border-bottom: 2px solid #f99; /* fcc */
392 }
393 /* blocks containing added words */
394 .diff .final:first-child,
395 .diff .added:first-child {
396   border-top: 2px solid #9f9; /* cfc */
397 }
398 .diff .final,
399 .diff .added {
400   background: white;
401   border-left: 2px solid #9f9; /* cfc */
402   border-right: 2px solid #9f9; /* cfc */
403 }
404 .diff .final:last-child,
405 .diff .added:last-child {
406   border-bottom: 2px solid #9f9; /* cfc */
407 }
408 /* These don't work in NS4 -- it completely ignores <del> and <ins>. */
409 /* deleted words */
410 .diff del { background: #fcc; } /* f99 */
411 /* added words */
412 .diff ins { background: #cfc; } /* 9f9 */
413
414
415 /**
416  * PageList output
417  */
418 .pagelist tr.evenrow { background: #f8f8f8; }
419 .pagelist tr.oddrow  { background: #eee; }
420 .pagelist thead td {
421   background: #e8e8e8;
422   text-decoration: none;
423   font-weight: bold;
424   font-size: smaller;
425 }
426 .pagelist thead td u { text-decoration: none; }
427 /* Yellow highlight for every td of mouseover'd tr in pagelist tbody
428    ie mac ignores all these */
429 /*.pagelist tbody tr:hover>td { background: #ffff99; }*/
430 .pagelist tbody tr:hover>td {
431   border: solid #ffff99 2px;
432 }
433 /* some browsers give wacky expanding :hover cells,
434    use transparent border here instead of padding change */
435 .pagelist tbody tr>td {
436   border: solid transparent 2px;
437 }
438 th.gridbutton {
439   background-color: threedlightshadow;
440   color: black;
441   font-family: Tahoma, sans-serif, Arial, Helvetica;
442   font-size: small;
443   font-weight: normal;
444   /*font-style: menu;*/
445   height: 18px;
446   white-space: nowrap;
447   max-height: 24px;
448   padding: 5px 0px 5px 0px;
449   margin: 5px 0px;
450   float: none;
451   border-width: 1px;
452   border-style: solid;
453   border-color: threedhighlight threeddarkshadow threeddarkshadow threedhighlight;
454 }
455 input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton {
456   text-decoration: none;
457   font-size: small;
458   font-weight: normal;
459   /*font-style: menu;*/
460   font-family: Tahoma, sans-serif, Arial, Helvetica;
461   background-color: threedlightshadow;
462   color: black;
463 }
464
465 /**
466  * Search
467  */
468 #searchholder { display: inline; }
469
470 /**
471  * Search Results
472  */
473 .search-context { background: white; font-style: oblique; }
474 .search-term {
475   background: #9bdaff;
476   font-weight: normal;
477 }
478 #LSResult {
479   position: absolute;
480   text-align: left;
481   display: none;
482   z-index: 100;
483   background-color: white;
484   border: 1px solid #d0d0d0; 
485   font-size: 9px;
486   overflow: hidden;
487 }
488 #LSHighlight {
489   background-color: #f08000;
490 }
491 #LSResult .evenrow {
492   background-color: #f0f0f0;
493
494 #LSREsult .oddrow {
495
496 .LSEnd {
497   text-align: right;
498 }
499 .LSRow:hover {
500   background-color: white;
501 }
502 .LSRow {
503   padding: 1px;
504
505 ul.LSRes {
506   margin: 0px;
507   padding: 0px;
508 }
509 li.LSRow {
510   margin: 0px;
511   list-style-image: none;
512 }
513
514 .clear-floats {
515   clear: both;
516 }
517
518 dl {
519   display:table;
520 }
521 /* dotted underline each dt. use display:table to shrink width */
522 dt {
523   display: table;
524   font-weight: bold;
525   vertical-align: baseline;
526   margin-top: 1.25ex;
527   margin-bottom: 0.25ex;
528   padding-left: 0.25ex;
529   padding-right: 0.25ex;
530   border-bottom-style: dotted;
531   border-bottom-width: 2pt;
532   border-bottom-color: #9999cc;
533 }
534 /* No underlines for wiki-links in dt,
535    we already have dotted underline */
536 dt a.wiki, dt a.named-wiki {
537   text-decoration: none;
538 }
539 /* No top margin for first dt */
540 dl>dt:first-child {
541   margin-top: 0ex;
542 }
543 /* underline each dd.
544    use display:table to shrink width */
545 dd {
546 /* overflows wide text beyond containing dl */
547 /* in most browsers :( Would have been nice */
548 /*   display: table; */
549   position: relative;
550   margin-left: 3.5em;
551   margin-bottom: 0.5ex;
552   padding-left: 0.125em;
553   padding-bottom: 0.5ex;
554   padding-right: 0.125em;
555   border-bottom-style: solid;
556   border-bottom-width: thin;
557   border-bottom-color: #9999cc;
558 }
559 pre,
560 div.plugin code {
561   color: black;
562   display: block;
563   background-color: #fcfcfc;
564   font-size: 90%;
565   line-height: 1.25em;
566   margin-top: 0.25em;
567   margin-left: 0em;
568   margin-bottom: 2ex;
569   margin-right: 0em;
570   padding-top: 0.25em;
571   padding-left: 0.5em;
572   padding-bottom: 0.25em;
573   padding-right: 0.5em;
574   border-style: solid;
575   border-width: 1px;
576   border-color: #ccc;
577 }
578 pre {
579   background: #fafafa url("images/bgpaper8.png");
580 }
581 /* Indented wrap past diff buttons in RecentChanges */
582 ul li.rc-major, ul li.rc-minor {
583   margin-left: 0;
584   padding-left: 3em;
585   text-indent: -3em;
586 }
587
588
589 /*
590  * Vertical margins around block elements.
591  */
592 p { margin: 1em 0; }            /* Normal ("loose") paragraphs */
593 li p, dd p, td p { margin: 1ex 0; } /* Paragraphs within lists are a little tighter. */
594   
595 /* ul, ol, dl { margin: 0.2ex 0; }      /* A little room around lists. */
596 /* li ul, li ol, li dl,
597 dd ul, dd ol, dd dl { margin: 0 0; } /* but not around sub-lists. */
598
599 /* Normal ("loose") list elements */
600 li.tightenable { margin: 1em 0; }
601 dt.tightenable { margin-top: 1em; }
602 dd.tightenable { margin-bottom: 1.5ex; }
603   
604 li.tightenable.top,
605 dt.tightenable.top,
606 dd.tightenable.top {
607   margin-top: 0.2ex;
608 }
609 li li.tightenable.top {
610   margin-top: 0;
611 }
612 li.tightenable.bottom,
613 dd.tightenable.bottom {
614   margin-bottom: 0.2ex;
615 }
616 li li.tightenable.bottom {
617   margin-bottom: 0;
618 }
619
620 .tightenable.top {
621   margin-top: 0;
622 }
623 .tightenable.bottom {
624   margin-bottom: 0;
625 }
626
627 /* IncludePage plugin */
628 .transclusion-title {
629   text-align: right;
630   font-style: oblique;
631   font-size:  smaller;
632   text-decoration: underline;
633   margin-bottom: 0.25ex;
634   margin-right:  0.25em;
635
636 .transclusion, .wiki-edithelp {
637   font-size: smaller;
638 }
639 .transclusion {
640   border: 1px solid gray;
641   padding-left:  0.8em; 
642   padding-right: 0.8em; 
643   padding-top:     0px;
644   padding-bottom:  0px;
645   margin-left:   0.25em;
646   margin-right:  0.25em;
647   margin-bottom: 0.1ex;
648 }
649 .wiki-edithelp {
650   background: white;
651   border: medium solid #fff8dc; /* darker ivory */
652   padding-left:  0.5em;
653   padding-right: 0.5em;
654   padding-top:    0.75ex;
655   padding-bottom: 0.75ex;
656   margin-left:  0;
657   margin-right: 0;
658   margin-top: 1ex;
659   margin-bottom: 1ex;
660 }
661 .wiki-edithelp .wiki {
662   /* color: #5454ff;*/
663 }
664 .wiki-edithelp p {
665   font-family: Arial, Helvetica, sans-serif;
666   padding-left:  0.5em;
667   padding-right: 0.5em;
668   padding-top:    0.5ex;
669   padding-bottom: 0.5ex;
670   margin: 0;
671 }
672 /**
673  * PageHistory, Info
674  */
675 td.pageinfo { font-weight: bold; }
676 .pageinfo-minoredit, .pageinfo-authorid {
677   font-size: smaller;
678   font-style: oblique;
679 }
680
681
682 /**
683  * Other
684  */
685 .printer, .no-css { display: none; }
686
687 /* Disabled Plugins */
688 .disabled-plugin
689 {
690   clear: both;
691   margin: 1ex 0;
692   padding: 0;
693 }
694 .disabled-plugin .title {
695   color: #400;
696   background-color: inherit;
697   font-size: x-small;
698   text-align: right;
699   padding: 0 0.5em;
700 }
701 .disabled-plugin pre {
702   color: black;
703   background: #ddd;
704   margin: 0;
705   padding: 0.3ex 0.5em;
706 }
707
708 /* "(Redirected from ...)" message. */
709 span.redirectfrom {
710   font-size: small;
711   font-style: oblique;
712   font-weight: normal;
713   padding-left: 1em;
714 }
715
716 /*
717  * "E-mail" style blockquote
718  */
719 blockquote.mail-style-quote {
720   border-left: medium #284 solid;
721   padding-left: 1em;
722   margin-left: 0;
723   margin-right: 0;
724 }
725 .mail-style-quote blockquote.mail-style-quote {
726   margin-left: -0.6em;
727 }
728
729
730 /*
731  * wikiblog
732  */
733 .floatleft { float: left; }
734 .floatright { float: right; }
735
736 div.wikiblog {
737   /* border: thin black solid; */
738   margin: 1ex 2em;
739   padding: 0 0;
740 }
741 div.wikiblog > div {
742   margin: 0 0;
743   padding: 0.5ex 0.5em;
744 }
745 div.wikiblog-header {
746   /* background-color: #ccf; */
747 }
748 div.wikiblog > div.wikiblog-footer {
749   /* background-color: #eee; */
750   padding: 0.2ex 0.5em;
751 }
752 h3.wikiblog-summary {
753   font-size: medium;
754   font-weight: bold;
755   margin: 0 0 1ex 0;
756 }
757
758 div.wikiblog.wikiblog-form {
759   /* background-color: #eee; */
760 }
761
762 table.wikiblog-form {
763   width: auto;
764   border-collapse: collapse;
765   margin: 0.25em 0;
766 }
767 .wikiblog-form caption {
768   /* background-color: #ccf; */
769   caption-side: top;
770   font-weight: bold;
771   text-align: left;
772   padding: 0.5ex 0.5em;
773 }
774 .wikiblog-form th {
775   vertical-align: top;
776   text-align: right;
777   padding: 0 0 0.3em 0.5em;
778 }
779 .wikiblog-form td {
780   padding: 0.25em 0.5em;
781 }
782 .wikiblog-form td.submit-button {
783   padding: 0;
784 }
785 .wikiblog-form input[type=text],
786 .wikiblog-form textarea {
787   margin: 0 0;
788   width: 100%;
789 }
790 div.wikicomment div.wikicomment-footer {
791   padding: 0.2ex 0.5em;
792 }
793 div.wikicomment div.wikicomment-footer named-wiki {
794   font-size: small;
795 }
796 table.interwiki-map {
797   margin: 1em 2em;
798 }
799 .interwiki-map th {
800   text-decoration: underline;
801   text-align: left;
802   padding-left: 1em;
803 }
804 .interwiki-map td.interwiki-url {
805   padding-left: 2em;
806 }
807 .interwiki-map th.interwiki-url {
808   padding-left: 3em;
809 }
810
811 .dialog {
812   background-color: #cdf;
813   color: black;
814   margin: 2em auto 2em auto;
815   border: thin black solid;
816   width: 50%;
817 }
818 .dialog h1, .dialog p, .dialog div {
819   text-align: center;
820 }
821 .dialog h1 {
822   font-size: large;
823   margin: 0.5em 0 1em 0;
824 }
825 .dialog div.message {
826   background-color: white;
827   color: black;
828   color: black;
829   margin: 0 1em;
830   padding: 0.5em 0.5em;
831 }
832 .dialog p.buttons {
833   margin: 1em 0 0.5em 0;
834 }
835
836
837
838 /* postnuke css:*/
839 .gensmall{font-size:10px}
840 .genmed{font-size:11px}
841 td.cat{font-weight:bold;letter-spacing:1px;color:#000000;background: url(./images/cellpic1.png);height:27px}
842 /* Main table cell colours and backgrounds */
843 td.row1{background:#eaedf4;color:#000000}
844 td.row2{background:#d9e2ec;color:#000000}
845 td.row3{background:#cad9ea;color:#000000}
846 td.spacerow{background:#cad9ea;color:#000000}
847
848 /* This is the outline round the main forum tables */
849 .forumline{background:#ffffff;color:#000000;border:1px solid #006699}
850
851 /* Sidebar */
852 .box { background:#ffffff; border: 1px solid silver }
853 .box-title { font-family: Tahoma; font-weight: normal; /*font-size: 11pt; */ background-color: #ccc; color: black; /*font-style: menu;*/ text-align: center; border: none; padding: 2px 0 2px 0;}
854 .box-data { width: 160px; font-size: 9pt; font-weight: normal; border: none; }
855 .box-data .wiki { font-weight: normal; }
856 td.sidebar { border-spacing: 0px; margin: 0ex;}
857
858 /* plugin BoxRight */
859 div.boxright {
860   width: 200px; 
861   right: 10px;
862   padding: 0.5em; 
863   float: right; 
864   border: thin solid #888888; 
865   padding: 0.5em;
866 }
867
868 /* RssFeed */
869 div.rss { margin: 1em; padding: 1em; font-size: 0.9em; background-color: #eeeeee; border: thin dashed #aaa; }
870 div.feed { color: #333; margin: -0.5em; margin-bottom: 0em; padding: 0.3em; font-weight: bold; background-color: #f2f2f2; font-size: 1.2em; }
871 div.itemdesc {  padding-left: 1em; }
872 div.rssitem { border-top: thin dashed #aaa; }
873
874 /* SqlResult */
875 table.sqlresult { 
876   border: 1px outset gray;
877   background: white;
878   margin: 0.5ex 0.5em;
879   padding: 1px;
880 }
881 .sqlresult tr.evenrow { background: #eee; }
882 .sqlresult tr.oddrow  { background: white; }
883 table.sqlresult td {
884   margin: 1px;
885   border: 1px solid gray;
886 }
887
888 /**
889  * TeX2png plugin
890  */
891 img.tex { 
892   border: 0ex;
893   vertical-align: middle; 
894 }
895
896 /**
897  * PhotoAlbum plugin
898  */
899 .boldsmall {
900   font-weight: bold;
901   font-size: 11px;
902 }
903
904
905 .wikiwyg_toolbar {
906     background: #D3D3D3;
907     border: 1px outset;
908     letter-spacing: 0;
909     padding: 2px;
910 }
911
912 span.wikiwyg_control_link a {
913     padding-right: 8px;
914 }
915
916 .wikiwyg_button {
917     background: #D3D3D3;
918     border: 1px solid #D3D3D3;
919     cursor: pointer;
920     width: 20px;
921     height: 20px;
922     vertical-align: bottom;
923 }
924
925 .wikiwyg_button:hover {
926     border: 1px outset;
927 }
928
929 .wikiwyg_button:active {
930     border: 1px inset;
931 }
932
933 .wikiwyg_separator {
934     background: #D3D3D3;
935     border: 1px solid #D3D3D3;
936     width: 9px;
937     height: 20px;
938     vertical-align: bottom;
939 }
940
941 .wikiwyg_selector {
942     width: 70px;
943 }
944
945 .wikiwyg_wysiwyg table {
946     border-collapse: collapse;
947     margin-bottom: .2em;
948 }
949
950 .wikiwyg_wysiwyg table td {
951     border: 1px;
952     border-style: solid;
953     padding: .2em;
954     vertical-align: top;
955 }
956
957 /* For emacs users
958  *
959  * Local Variables:
960  * mode: c
961  * c-file-style: cc-mode
962  * End:
963  */