Brighten up the high slave lag warning in Monobook; looked a bit...grubby
[lhc/web/wiklou.git] / skins / monobook / main.css
1 /*
2 ** MediaWiki 'monobook' style sheet for CSS2-capable browsers.
3 ** Copyright Gabriel Wicke - http://wikidev.net/
4 ** License: GPL (http://www.gnu.org/copyleft/gpl.html)
5 **
6 ** Loosely based on http://www.positioniseverything.net/ordered-floats.html by Big John
7 ** and the Plone 2.0 styles, see http://plone.org/ (Alexander Limi,Joe Geldart & Tom Croucher,
8 ** Michael Zeltner and Geir Bækholt)
9 ** All you guys rock :)
10 */
11
12 /**
13 * Stylesheet for screen/projection. All rules not marked media-specific are
14 * shared with handheld.css and should be updated in tandem. The rules can't
15 * be in the same file because old browsers like IE5 won't obey @media rules.
16 *
17 * Rules that are screen/projection-specific are marked with commented-out
18 * @media rules and indentation.
19 */
20
21 /* @media screen, projection { */
22 #column-content {
23 width: 100%;
24 float: right;
25 margin: 0 0 .6em -12.2em;
26 padding: 0;
27 }
28 #content {
29 margin: 2.8em 0 0 12.2em;
30 padding: 0 1em 1.5em 1em;
31 position: relative;
32 z-index: 2;
33 }
34 #column-one {
35 padding-top: 160px;
36 }
37 /* } */
38 #content {
39 background: white;
40 color: black;
41 border: 1px solid #aaa;
42 border-right: none;
43 line-height: 1.5em;
44 }
45 /* the left column width is specified in class .portlet */
46
47 /* Font size:
48 ** We take advantage of keyword scaling- browsers won't go below 9px
49 ** More at http://www.w3.org/2003/07/30-font-size
50 ** http://style.cleverchimp.com/font_size_intervals/altintervals.html
51 */
52
53 body {
54 font: x-small sans-serif;
55 background: #f9f9f9 url(headbg.jpg) 0 0 no-repeat;
56 color: black;
57 margin: 0;
58 padding: 0;
59 }
60
61 /* scale back up to a sane default */
62 #globalWrapper {
63 font-size: 127%;
64 width: 100%;
65 margin: 0;
66 padding: 0;
67 }
68 .visualClear {
69 clear: both;
70 }
71
72 /* general styles */
73
74 table {
75 font-size: 100%;
76 color: black;
77 /* we don't want the bottom borders of <h2>s to be visible through
78 floated tables */
79 background-color: white;
80 }
81 a {
82 text-decoration: none;
83 color: #002bb8;
84 background: none;
85 }
86 a:visited {
87 color: #5a3696;
88 }
89 a:active {
90 color: #faa700;
91 }
92 a:hover {
93 text-decoration: underline;
94 }
95 a.stub {
96 color: #772233;
97 }
98 a.new, #p-personal a.new {
99 color: #ba0000;
100 }
101 a.new:visited, #p-personal a.new:visited {
102 color: #a55858;
103 }
104
105 img {
106 border: none;
107 vertical-align: middle;
108 }
109 /* @media screen, projection { */
110 p {
111 margin: .4em 0 .5em 0;
112 line-height: 1.5em;
113 }
114 /* } */
115 p img {
116 margin: 0;
117 }
118
119 hr {
120 height: 1px;
121 color: #aaa;
122 background-color: #aaa;
123 border: 0;
124 margin: .2em 0 .2em 0;
125 }
126
127 h1, h2, h3, h4, h5, h6 {
128 color: black;
129 background: none;
130 font-weight: normal;
131 margin: 0;
132 padding-top: .5em;
133 padding-bottom: .17em;
134 border-bottom: 1px solid #aaa;
135 }
136 h1 { font-size: 188%; }
137 h1 .editsection { font-size: 53%; }
138 h2 { font-size: 150%; }
139 h2 .editsection { font-size: 67%; }
140 h3, h4, h5, h6 {
141 border-bottom: none;
142 font-weight: bold;
143 }
144 h3 { font-size: 132%; }
145 h3 .editsection { font-size: 76%; font-weight: normal; }
146 h4 { font-size: 116%; }
147 h4 .editsection { font-size: 86%; font-weight: normal; }
148 h5 { font-size: 100%; }
149 h5 .editsection { font-weight: normal; }
150 h6 { font-size: 80%; }
151 h6 .editsection { font-size: 125%; font-weight: normal; }
152
153 .editsection {
154 float: right;
155 margin-left: 5px;
156 }
157
158 ul {
159 line-height: 1.5em;
160 list-style-type: square;
161 margin: .3em 0 0 1.5em;
162 padding: 0;
163 list-style-image: url(bullet.gif);
164 }
165 ol {
166 line-height: 1.5em;
167 margin: .3em 0 0 3.2em;
168 padding: 0;
169 list-style-image: none;
170 }
171 li {
172 margin-bottom: .1em;
173 }
174 dt {
175 font-weight: bold;
176 margin-bottom: .1em;
177 }
178 dl {
179 margin-top: .2em;
180 margin-bottom: .5em;
181 }
182 dd {
183 line-height: 1.5em;
184 margin-left: 2em;
185 margin-bottom: .1em;
186 }
187
188 fieldset {
189 border: 1px solid #2f6fab;
190 margin: 1em 0 1em 0;
191 padding: 0 1em 1em;
192 line-height: 1.5em;
193 }
194 legend {
195 padding: .5em;
196 font-size: 95%;
197 }
198 form {
199 border: none;
200 margin: 0;
201 }
202
203 textarea {
204 width: 100%;
205 padding: .1em;
206 }
207
208 input.historysubmit {
209 padding: 0 .3em .3em .3em !important;
210 font-size: 94%;
211 cursor: pointer;
212 height: 1.7em !important;
213 margin-left: 1.6em;
214 }
215 select {
216 vertical-align: top;
217 }
218 abbr, acronym, .explain {
219 border-bottom: 1px dotted black;
220 color: black;
221 background: none;
222 cursor: help;
223 }
224 q {
225 font-family: Times, "Times New Roman", serif;
226 font-style: italic;
227 }
228 /* disabled for now
229 blockquote {
230 font-family: Times, "Times New Roman", serif;
231 font-style: italic;
232 }*/
233 code {
234 background-color: #f9f9f9;
235 }
236 pre {
237 padding: 1em;
238 border: 1px dashed #2f6fab;
239 color: black;
240 background-color: #f9f9f9;
241 line-height: 1.1em;
242 }
243
244 /*
245 ** the main content area
246 */
247
248 /* @media screen, projection { */
249 #siteSub {
250 display: none;
251 }
252 #jump-to-nav {
253 display: none;
254 }
255 /* } */
256
257 #contentSub, #contentSub2 {
258 font-size: 84%;
259 line-height: 1.2em;
260 margin: 0 0 1.4em 1em;
261 color: #7d7d7d;
262 width: auto;
263 }
264 span.subpages {
265 display: block;
266 }
267
268 /* Some space under the headers in the content area */
269 #bodyContent h1, #bodyContent h2 {
270 margin-bottom: .6em;
271 }
272 #bodyContent h3, #bodyContent h4, #bodyContent h5 {
273 margin-bottom: .3em;
274 }
275 .firstHeading {
276 margin-bottom: .1em;
277 }
278
279 /* user notification thing */
280 .usermessage {
281 background-color: #ffce7b;
282 border: 1px solid #ffa500;
283 color: black;
284 font-weight: bold;
285 margin: 2em 0 1em;
286 padding: .5em 1em;
287 vertical-align: middle;
288 }
289 #siteNotice {
290 text-align: center;
291 font-size: 95%;
292 padding: 0 .9em;
293 }
294 #siteNotice p {
295 margin: 0;
296 padding: 0;
297 }
298 .error {
299 color: red;
300 font-size: larger;
301 }
302 .errorbox, .successbox {
303 font-size: larger;
304 border: 2px solid;
305 padding: .5em 1em;
306 float: left;
307 margin-bottom: 2em;
308 color: #000;
309 }
310 .errorbox {
311 border-color: red;
312 background-color: #fff2f2;
313 }
314 .successbox {
315 border-color: green;
316 background-color: #dfd;
317 }
318 .errorbox h2, .successbox h2 {
319 font-size: 1em;
320 font-weight: bold;
321 display: inline;
322 margin: 0 .5em 0 0;
323 border: none;
324 }
325
326 #catlinks {
327 border: 1px solid #aaa;
328 background-color: #f9f9f9;
329 padding: 5px;
330 margin-top: 1em;
331 clear: both;
332 }
333 /* currently unused, intended to be used by a metadata box
334 in the bottom-right corner of the content area */
335 .documentDescription {
336 /* The summary text describing the document */
337 font-weight: bold;
338 display: block;
339 margin: 1em 0;
340 line-height: 1.5em;
341 }
342 .documentByLine {
343 text-align: right;
344 font-size: 90%;
345 clear: both;
346 font-weight: normal;
347 color: #76797c;
348 }
349
350 /* emulate center */
351 .center {
352 width: 100%;
353 text-align: center;
354 }
355 *.center * {
356 margin-left: auto;
357 margin-right: auto;
358 }
359 /* small for tables and similar */
360 .small, .small * {
361 font-size: 94%;
362 }
363 table.small {
364 font-size: 100%;
365 }
366
367 /*
368 ** content styles
369 */
370
371 #toc,
372 .toc,
373 .mw-warning {
374 border: 1px solid #aaa;
375 background-color: #f9f9f9;
376 padding: 5px;
377 font-size: 95%;
378 }
379 #toc h2,
380 .toc h2 {
381 display: inline;
382 border: none;
383 padding: 0;
384 font-size: 100%;
385 font-weight: bold;
386 }
387 #toc #toctitle,
388 .toc #toctitle,
389 #toc .toctitle,
390 .toc .toctitle {
391 text-align: center;
392 }
393 #toc ul,
394 .toc ul {
395 list-style-type: none;
396 list-style-image: none;
397 margin-left: 0;
398 padding-left: 0;
399 text-align: left;
400 }
401 #toc ul ul,
402 .toc ul ul {
403 margin: 0 0 0 2em;
404 }
405 #toc .toctoggle,
406 .toc .toctoggle {
407 font-size: 94%;
408 }
409
410 .mw-warning {
411 margin-left: 50px;
412 margin-right: 50px;
413 text-align: center;
414 }
415
416 /* images */
417 div.floatright, table.floatright {
418 clear: right;
419 float: right;
420 position: relative;
421 margin: 0 0 .5em .5em;
422 border: 0;
423 /*
424 border: .5em solid white;
425 border-width: .5em 0 .8em 1.4em;
426 */
427 }
428 div.floatright p { font-style: italic; }
429 div.floatleft, table.floatleft {
430 float: left;
431 clear: left;
432 position: relative;
433 margin: 0 .5em .5em 0;
434 border: 0;
435 /*
436 margin: .3em .5em .5em 0;
437 border: .5em solid white;
438 border-width: .5em 1.4em .8em 0;
439 */
440 }
441 div.floatleft p { font-style: italic; }
442 /* thumbnails */
443 div.thumb {
444 margin-bottom: .5em;
445 border-style: solid;
446 border-color: white;
447 width: auto;
448 }
449 div.thumbinner {
450 border: 1px solid #ccc;
451 padding: 3px !important;
452 background-color: #f9f9f9;
453 font-size: 94%;
454 text-align: center;
455 overflow: hidden;
456 }
457 html .thumbimage {
458 border: 1px solid #ccc;
459 }
460 html .thumbcaption {
461 border: none;
462 text-align: left;
463 line-height: 1.4em;
464 padding: 3px !important;
465 font-size: 94%;
466 }
467 div.magnify {
468 float: right;
469 border: none !important;
470 background: none !important;
471 }
472 div.magnify a, div.magnify img {
473 display: block;
474 border: none !important;
475 background: none !important;
476 }
477 div.tright {
478 clear: right;
479 float: right;
480 border-width: .5em 0 .8em 1.4em;
481 }
482 div.tleft {
483 float: left;
484 clear: left;
485 margin-right: .5em;
486 border-width: .5em 1.4em .8em 0;
487 }
488 img.thumbborder {
489 border: 1px solid #dddddd;
490 }
491 .hiddenStructure {
492 display: none;
493 speak: none;
494 }
495
496 /* Have a checkered background on images on the description pages and in galleries
497 to make transparency visible
498
499 #file img, .gallerybox .thumb img {
500 background: url(Checker-16x16.png) repeat;
501 }
502 */
503
504 /*
505 ** classes for special content elements like town boxes
506 ** intended to be referenced directly from the wiki src
507 */
508
509 /*
510 ** User styles
511 */
512 /* table standards */
513 table.rimage {
514 float: right;
515 position: relative;
516 margin-left: 1em;
517 margin-bottom: 1em;
518 text-align: center;
519 }
520 .toccolours {
521 border: 1px solid #aaa;
522 background-color: #f9f9f9;
523 padding: 5px;
524 font-size: 95%;
525 }
526 div.townBox {
527 position: relative;
528 float: right;
529 background: white;
530 margin-left: 1em;
531 border: 1px solid gray;
532 padding: .3em;
533 width: 200px;
534 overflow: hidden;
535 clear: right;
536 }
537 div.townBox dl {
538 padding: 0;
539 margin: 0 0 .3em;
540 font-size: 96%;
541 }
542 div.townBox dl dt {
543 background: none;
544 margin: .4em 0 0;
545 }
546 div.townBox dl dd {
547 margin: .1em 0 0 1.1em;
548 background-color: #f3f3f3;
549 }
550
551 /*
552 ** edit views etc
553 */
554 .special li {
555 line-height: 1.4em;
556 margin: 0;
557 padding: 0;
558 }
559
560 /* Page history styling */
561 /* the auto-generated edit comments */
562 .autocomment {
563 color: gray;
564 }
565 #pagehistory span.user {
566 margin-left: 1.4em;
567 margin-right: .4em;
568 }
569 #pagehistory span.minor {
570 font-weight: bold;
571 }
572 #pagehistory li {
573 border: 1px solid white;
574 }
575 #pagehistory li.selected {
576 background-color: #f9f9f9;
577 border: 1px dashed #aaa;
578 }
579
580 /*
581 ** keep the whitespace in front of the ^=, hides rule from konqueror
582 ** this is css3, the validator doesn't like it when validating as css2
583 */
584 #bodyContent a.external,
585 #bodyContent a[href ^="gopher://"] {
586 background: url(external.png) center right no-repeat;
587 padding-right: 13px;
588 }
589 #bodyContent a[href ^="https://"],
590 .link-https {
591 background: url(lock_icon.gif) center right no-repeat;
592 padding-right: 16px;
593 }
594 #bodyContent a[href ^="mailto:"],
595 .link-mailto {
596 background: url(mail_icon.gif) center right no-repeat;
597 padding-right: 18px;
598 }
599 #bodyContent a[href ^="news://"] {
600 background: url(news_icon.png) center right no-repeat;
601 padding-right: 18px;
602 }
603 #bodyContent a[href ^="ftp://"],
604 .link-ftp {
605 background: url(file_icon.gif) center right no-repeat;
606 padding-right: 18px;
607 }
608 #bodyContent a[href ^="irc://"],
609 .link-irc {
610 background: url(discussionitem_icon.gif) center right no-repeat;
611 padding-right: 18px;
612 }
613 #bodyContent a.external[href $=".ogg"], #bodyContent a.external[href $=".OGG"],
614 #bodyContent a.external[href $=".mid"], #bodyContent a.external[href $=".MID"],
615 #bodyContent a.external[href $=".midi"], #bodyContent a.external[href $=".MIDI"],
616 #bodyContent a.external[href $=".mp3"], #bodyContent a.external[href $=".MP3"],
617 #bodyContent a.external[href $=".wav"], #bodyContent a.external[href $=".WAV"],
618 #bodyContent a.external[href $=".wma"], #bodyContent a.external[href $=".WMA"],
619 .link-audio {
620 background: url("audio.png") center right no-repeat;
621 padding-right: 13px;
622 }
623 #bodyContent a.external[href $=".ogm"], #bodyContent a.external[href $=".OGM"],
624 #bodyContent a.external[href $=".avi"], #bodyContent a.external[href $=".AVI"],
625 #bodyContent a.external[href $=".mpeg"], #bodyContent a.external[href $=".MPEG"],
626 #bodyContent a.external[href $=".mpg"], #bodyContent a.external[href $=".MPG"],
627 .link-video {
628 background: url("video.png") center right no-repeat;
629 padding-right: 13px;
630 }
631 #bodyContent a.external[href $=".pdf"], #bodyContent a.external[href $=".PDF"],
632 #bodyContent a.external[href *=".pdf#"], #bodyContent a.external[href *=".PDF#"],
633 #bodyContent a.external[href *=".pdf?"], #bodyContent a.external[href *=".PDF?"],
634 .link-document {
635 background: url("document.png") center right no-repeat;
636 padding-right: 12px;
637 }
638
639 /* disable interwiki styling */
640 #bodyContent a.extiw,
641 #bodyContent a.extiw:active {
642 color: #36b;
643 background: none;
644 padding: 0;
645 }
646 #bodyContent a.external {
647 color: #36b;
648 }
649 /* this can be used in the content area to switch off
650 special external link styling */
651 #bodyContent .plainlinks a {
652 background: none !important;
653 padding: 0 !important;
654 }
655 /*
656 ** Structural Elements
657 */
658
659 /*
660 ** general portlet styles (elements in the quickbar)
661 */
662 .portlet {
663 border: none;
664 margin: 0 0 .5em;
665 padding: 0;
666 float: none;
667 width: 11.6em;
668 overflow: hidden;
669 }
670 .portlet h4 {
671 font-size: 95%;
672 font-weight: normal;
673 white-space: nowrap;
674 }
675 .portlet h5 {
676 background: transparent;
677 padding: 0 1em 0 .5em;
678 display: inline;
679 height: 1em;
680 text-transform: lowercase;
681 font-size: 91%;
682 font-weight: normal;
683 white-space: nowrap;
684 }
685 .portlet h6 {
686 background: #ffae2e;
687 border: 1px solid #2f6fab;
688 border-style: solid solid none solid;
689 padding: 0 1em 0 1em;
690 text-transform: lowercase;
691 display: block;
692 font-size: 1em;
693 height: 1.2em;
694 font-weight: normal;
695 white-space: nowrap;
696 }
697 .pBody {
698 font-size: 95%;
699 background-color: white;
700 color: black;
701 border-collapse: collapse;
702 border: 1px solid #aaa;
703 padding: 0 .8em .3em .5em;
704 }
705 .portlet h1,
706 .portlet h2,
707 .portlet h3,
708 .portlet h4 {
709 margin: 0;
710 padding: 0;
711 }
712 .portlet ul {
713 line-height: 1.5em;
714 list-style-type: square;
715 list-style-image: url(bullet.gif);
716 font-size: 95%;
717 }
718 .portlet li {
719 padding: 0;
720 margin: 0;
721 }
722
723 /*
724 ** Logo properties
725 */
726
727 /* @media screen, projection { */
728 #p-logo {
729 top: 0;
730 left: 0;
731 position: absolute; /*needed to use z-index */
732 z-index: 3;
733 height: 155px;
734 width: 12em;
735 overflow: visible;
736 }
737 #p-logo h5 {
738 display: none;
739 }
740 #p-logo a,
741 #p-logo a:hover {
742 display: block;
743 height: 155px;
744 width: 12.2em;
745 background-repeat: no-repeat;
746 background-position: 35% 50% !important;
747 text-decoration: none;
748 }
749 /* } */
750 /*
751 ** the navigation portlet
752 */
753
754 /* @media screen, projection { */
755 #p-navigation {
756 position: relative;
757 z-index: 3;
758 }
759 #p-navigation a {
760 display: block;
761 }
762 #p-navigation li.active a, #p-navigation li.active a:hover {
763 display: inline;
764 }
765 /* } */
766
767 #p-navigation .pBody {
768 padding-right: 0;
769 }
770
771 #p-navigation li.active a, #p-navigation li.active a:hover {
772 text-decoration: none;
773 font-weight: bold;
774 }
775
776
777 /*
778 ** Search portlet
779 */
780 /* @media screen, projection { */
781 #p-search {
782 position: relative;
783 z-index: 3;
784 }
785 /* } */
786 input.searchButton {
787 margin-top: 1px;
788 font-size: 95%;
789 }
790 #searchGoButton {
791 padding-left: .5em;
792 padding-right: .5em;
793 font-weight: bold;
794 }
795 #searchInput {
796 width: 10.9em;
797 margin: 0;
798 font-size: 95%;
799 }
800 #p-search .pBody {
801 padding: .5em .4em .4em .4em;
802 text-align: center;
803 }
804
805 /*
806 ** the personal toolbar
807 */
808 /* @media screen, projection { */
809 #p-personal {
810 position: absolute;
811 left: 0;
812 top: 0;
813 z-index: 0;
814 }
815 #p-personal {
816 width: 100%;
817 white-space: nowrap;
818 padding: 0;
819 margin: 0;
820 border: none;
821 background: none;
822 overflow: visible;
823 line-height: 1.2em;
824 }
825 #p-personal h5 {
826 display: none;
827 }
828 #p-personal .portlet,
829 #p-personal .pBody {
830 z-index: 0;
831 padding: 0;
832 margin: 0;
833 border: none;
834 overflow: visible;
835 background: none;
836 }
837 /* this is the ul contained in the portlet */
838 #p-personal ul {
839 border: none;
840 line-height: 1.4em;
841 color: #2f6fab;
842 padding: 0 2em 0 3em;
843 margin: 0;
844 text-align: right;
845 list-style: none;
846 z-index: 0;
847 background: none;
848 cursor: default;
849 }
850 #p-personal li {
851 z-index: 0;
852 border: none;
853 padding: 0;
854 display: inline;
855 color: #2f6fab;
856 margin-left: 1em;
857 line-height: 1.2em;
858 background: none;
859 }
860 #p-personal li a {
861 text-decoration: none;
862 color: #005896;
863 padding-bottom: .2em;
864 background: none;
865 }
866 #p-personal li a:hover {
867 background-color: white;
868 padding-bottom: .2em;
869 text-decoration: none;
870 }
871 #p-personal li.active a:hover {
872 background-color: transparent;
873 }
874 /* the icon in front of the user name, single quotes
875 in bg url to hide it from iemac */
876 li#pt-userpage,
877 li#pt-anonuserpage,
878 li#pt-login {
879 background: url(user.gif) top left no-repeat;
880 padding-left: 20px;
881 text-transform: none;
882 }
883 /* } */
884 #p-personal ul {
885 text-transform: lowercase;
886 }
887 #p-personal li.active {
888 font-weight: bold;
889 }
890 /*
891 ** the page-related actions- page/talk, edit etc
892 */
893 /* @media screen, projection { */
894 #p-cactions {
895 position: absolute;
896 top: 1.3em;
897 left: 11.5em;
898 margin: 0;
899 white-space: nowrap;
900 width: 76%;
901 line-height: 1.1em;
902 overflow: visible;
903 background: none;
904 border-collapse: collapse;
905 padding-left: 1em;
906 list-style: none;
907 font-size: 95%;
908 }
909 #p-cactions ul {
910 list-style: none;
911 }
912 #p-cactions li {
913 display: inline;
914 border: 1px solid #aaa;
915 border-bottom: none;
916 padding: 0 0 .1em 0;
917 margin: 0 .3em 0 0;
918 overflow: visible;
919 background: white;
920 }
921 #p-cactions li.selected {
922 border-color: #fabd23;
923 padding: 0 0 .2em 0;
924 font-weight: bold;
925 }
926 #p-cactions li a {
927 background-color: #fbfbfb;
928 color: #002bb8;
929 border: none;
930 padding: 0 .8em .3em;
931 position: relative;
932 z-index: 0;
933 margin: 0;
934 text-decoration: none;
935 }
936 #p-cactions li.selected a {
937 z-index: 3;
938 padding: 0 1em .2em!important;
939 background-color: white;
940 }
941 #p-cactions .new a {
942 color: #ba0000;
943 }
944 #p-cactions li a:hover {
945 z-index: 3;
946 text-decoration: none;
947 background-color: white;
948 }
949 #p-cactions h5 {
950 display: none;
951 }
952 #p-cactions li.istalk {
953 margin-right: 0;
954 }
955 #p-cactions li.istalk a {
956 padding-right: .5em;
957 }
958 #p-cactions #ca-addsection a {
959 padding-left: .4em;
960 padding-right: .4em;
961 }
962 /* offsets to distinguish the tab groups */
963 li#ca-talk {
964 margin-right: 1.6em;
965 }
966 li#ca-watch, li#ca-unwatch, li#ca-varlang-0, li#ca-print {
967 margin-left: 1.6em;
968 }
969 #p-cactions .pBody {
970 font-size: 1em;
971 background-color: transparent;
972 color: inherit;
973 border-collapse: inherit;
974 border: 0;
975 padding: 0;
976 }
977 /* } */
978 #p-cactions .hiddenStructure {
979 display: none;
980 }
981 #p-cactions li a {
982 text-transform: lowercase;
983 }
984
985 /*
986 ** the remaining portlets
987 */
988 /* @media screen, projection { */
989 #p-tbx,
990 #p-lang {
991 position: relative;
992 z-index: 3;
993 }
994 /* } */
995
996 /* TODO: #t-iscite is only used by the Cite extension, come up with some
997 * system which allows extensions to add to this file on the fly
998 */
999 #t-ispermalink, #t-iscite {
1000 color: #999;
1001 }
1002 /*
1003 ** footer
1004 */
1005 #footer {
1006 background-color: white;
1007 border-top: 1px solid #fabd23;
1008 border-bottom: 1px solid #fabd23;
1009 margin: .6em 0 1em 0;
1010 padding: .4em 0 1.2em 0;
1011 text-align: center;
1012 font-size: 90%;
1013 }
1014 #footer li {
1015 display: inline;
1016 margin: 0 1.3em;
1017 }
1018 #f-poweredbyico, #f-copyrightico {
1019 margin: 0 8px;
1020 position: relative;
1021 top: -2px; /* Bump it up just a tad */
1022 }
1023 #f-poweredbyico {
1024 float: right;
1025 height: 1%;
1026 }
1027 #f-copyrightico {
1028 float: left;
1029 height: 1%;
1030 }
1031
1032 /* js pref toc */
1033 #preftoc {
1034 margin: 0;
1035 padding: 0;
1036 width: 100%;
1037 clear: both;
1038 }
1039 #preftoc li {
1040 background-color: #f0f0f0;
1041 color: #000;
1042 }
1043 /* @media screen, projection { */
1044 #preftoc li {
1045 margin: 1px -2px 1px 2px;
1046 float: left;
1047 padding: 2px 0 3px 0;
1048 border: 1px solid #fff;
1049 border-right-color: #716f64;
1050 border-bottom: 0;
1051 position: relative;
1052 white-space: nowrap;
1053 list-style-type: none;
1054 list-style-image: none;
1055 z-index: 3;
1056 }
1057 /* } */
1058 #preftoc li.selected {
1059 font-weight: bold;
1060 background-color: #f9f9f9;
1061 border: 1px solid #aaa;
1062 border-bottom: none;
1063 cursor: default;
1064 top: 1px;
1065 padding-top: 2px;
1066 margin-right: -3px;
1067 }
1068 #preftoc > li.selected {
1069 top: 2px;
1070 }
1071 #preftoc a,
1072 #preftoc a:active {
1073 display: block;
1074 color: #000;
1075 padding: 0 .7em;
1076 position: relative;
1077 text-decoration: none;
1078 }
1079 #preftoc li.selected a {
1080 cursor: default;
1081 text-decoration: none;
1082 }
1083 #prefcontrol {
1084 padding-top: 2em;
1085 clear: both;
1086 }
1087 #preferences {
1088 margin: 0;
1089 border: 1px solid #aaa;
1090 clear: both;
1091 padding: 1.5em;
1092 background-color: #F9F9F9;
1093 }
1094 .prefsection {
1095 border: none;
1096 padding: 0;
1097 margin: 0;
1098 }
1099 .prefsection fieldset {
1100 border: 1px solid #aaa;
1101 float: left;
1102 margin-right: 2em;
1103 }
1104 .prefsection legend {
1105 font-weight: bold;
1106 }
1107 .prefsection table, .prefsection legend {
1108 background-color: #F9F9F9;
1109 }
1110 /* @media screen, projection { */
1111 .mainLegend {
1112 display: none;
1113 }
1114 /* } */
1115 div.prefsectiontip {
1116 font-size: x-small;
1117 padding: .2em 2em;
1118 color: #666;
1119 }
1120 .btnSavePrefs {
1121 font-weight: bold;
1122 padding-left: .3em;
1123 padding-right: .3em;
1124 }
1125
1126 .preferences-login {
1127 clear: both;
1128 margin-bottom: 1.5em;
1129 }
1130
1131 .prefcache {
1132 font-size: 90%;
1133 margin-top: 2em;
1134 }
1135
1136 div#userloginForm form,
1137 div#userlogin form#userlogin2 {
1138 margin: 0 3em 1em 0;
1139 border: 1px solid #aaa;
1140 clear: both;
1141 padding: 1.5em 2em;
1142 background-color: #f9f9f9;
1143 float: left;
1144 }
1145
1146 div#userloginForm table,
1147 div#userlogin form#userlogin2 table {
1148 background-color: #f9f9f9;
1149 }
1150
1151 div#userloginForm h2,
1152 div#userlogin form#userlogin2 h2 {
1153 padding-top: 0;
1154 }
1155
1156 div#userlogin .captcha,
1157 div#userloginForm .captcha {
1158 border: 1px solid #bbb;
1159 padding: 1.5em 2em;
1160 background-color: white;
1161 }
1162
1163
1164 #userloginprompt, #languagelinks {
1165 font-size: 85%;
1166 }
1167
1168 #login-sectiontip {
1169 font-size: 85%;
1170 line-height: 1.2;
1171 padding-top: 2em;
1172 }
1173
1174 #userlogin .loginText, #userlogin .loginPassword {
1175 width: 12em;
1176 }
1177
1178 #userloginlink a, #wpLoginattempt, #wpCreateaccount {
1179 font-weight: bold;
1180 }
1181
1182 /* @media screen, projection { */
1183 /*
1184 ** IE/Mac fixes, hope to find a validating way to move this
1185 ** to a separate stylesheet. This would work but doesn't validate:
1186 ** @import("IEMacFixes.css");
1187 */
1188 /* tabs: border on the a, not the div */
1189 * > html #p-cactions li { border: none; }
1190 * > html #p-cactions li a {
1191 border: 1px solid #aaa;
1192 border-bottom: none;
1193 }
1194 * > html #p-cactions li.selected a { border-color: #fabd23; }
1195 /* footer icons need a fixed width */
1196 * > html #f-poweredbyico,
1197 * > html #f-copyrightico { width: 88px; }
1198 * > html #bodyContent,
1199 * > html #bodyContent pre {
1200 overflow-x: auto;
1201 width: 100%;
1202 padding-bottom: 25px;
1203 }
1204 /* } */
1205
1206 /* more IE fixes */
1207 /* float/negative margin brokenness */
1208 * html #footer {margin-top: 0;}
1209 * html #column-content {
1210 display: inline;
1211 margin-bottom: 0;
1212 }
1213 * html div.editsection { font-size: smaller; }
1214 #pagehistory li.selected { position: relative; }
1215
1216 /* Mac IE 5.0 fix; floated content turns invisible */
1217 * > html #column-content {
1218 float: none;
1219 }
1220 * > html #column-one {
1221 position: absolute;
1222 left: 0;
1223 top: 0;
1224 }
1225 * > html #footer {
1226 margin-left: 13.2em;
1227 }
1228 .redirectText {
1229 font-size: 150%;
1230 margin: 5px;
1231 }
1232
1233 .printfooter {
1234 display: none;
1235 }
1236
1237 .not-patrolled {
1238 background-color: #ffa;
1239 }
1240 div.patrollink {
1241 font-size: 75%;
1242 text-align: right;
1243 }
1244 span.newpage, span.minor, span.searchmatch, span.bot {
1245 font-weight: bold;
1246 }
1247 span.unpatrolled {
1248 font-weight: bold;
1249 color: red;
1250 }
1251
1252 span.searchmatch {
1253 color: red;
1254 }
1255 .sharedUploadNotice {
1256 font-style: italic;
1257 }
1258
1259 span.updatedmarker {
1260 color: black;
1261 background-color: #0f0;
1262 }
1263
1264 table.gallery {
1265 border: 1px solid #ccc;
1266 margin: 2px;
1267 padding: 2px;
1268 background-color: white;
1269 }
1270
1271 table.gallery tr {
1272 vertical-align: top;
1273 }
1274
1275 table.gallery td {
1276 vertical-align: top;
1277 background-color: #f9f9f9;
1278 border: solid 2px white;
1279 }
1280 /* Keep this temporarily so that cached pages will display right */
1281 table.gallery td.galleryheader {
1282 text-align: center;
1283 font-weight: bold;
1284 }
1285 table.gallery caption {
1286 font-weight: bold;
1287 }
1288
1289 div.gallerybox {
1290 margin: 2px;
1291 }
1292
1293 div.gallerybox div.thumb {
1294 text-align: center;
1295 border: 1px solid #ccc;
1296 margin: 2px;
1297 }
1298
1299 div.gallerytext {
1300 overflow: hidden;
1301 font-size: 94%;
1302 padding: 2px 4px;
1303 }
1304
1305 span.comment {
1306 font-style: italic;
1307 }
1308
1309 span.changedby {
1310 font-size: 95%;
1311 }
1312
1313 .previewnote {
1314 text-indent: 3em;
1315 color: #c00;
1316 border-bottom: 1px solid #aaa;
1317 padding-bottom: 1em;
1318 margin-bottom: 1em;
1319 }
1320
1321 .previewnote p {
1322 margin: 0;
1323 padding: 0;
1324 }
1325
1326 .editExternally {
1327 border: 1px solid gray;
1328 background-color: #ffffff;
1329 padding: 3px;
1330 margin-top: 0.5em;
1331 float: left;
1332 font-size: small;
1333 text-align: center;
1334 }
1335 .editExternallyHelp {
1336 font-style: italic;
1337 color: gray;
1338 }
1339
1340 li span.deleted, span.history-deleted {
1341 text-decoration: line-through;
1342 color: #888;
1343 font-style: italic;
1344 }
1345
1346 .toggle {
1347 margin-left: 2em;
1348 text-indent: -2em;
1349 }
1350
1351 /* Classes for EXIF data display */
1352 table.mw_metadata {
1353 font-size: 0.8em;
1354 margin-left: 0.5em;
1355 margin-bottom: 0.5em;
1356 width: 300px;
1357 }
1358
1359 table.mw_metadata caption {
1360 font-weight: bold;
1361 }
1362
1363 table.mw_metadata th {
1364 font-weight: normal;
1365 }
1366
1367 table.mw_metadata td {
1368 padding: 0.1em;
1369 }
1370
1371 table.mw_metadata {
1372 border: none;
1373 border-collapse: collapse;
1374 }
1375
1376 table.mw_metadata td, table.mw_metadata th {
1377 text-align: center;
1378 border: 1px solid #aaaaaa;
1379 padding-left: 0.1em;
1380 padding-right: 0.1em;
1381 }
1382
1383 table.mw_metadata th {
1384 background-color: #f9f9f9;
1385 }
1386
1387 table.mw_metadata td {
1388 background-color: #fcfcfc;
1389 }
1390
1391 table.collapsed tr.collapsable {
1392 display: none;
1393 }
1394
1395
1396 /* filetoc */
1397 ul#filetoc {
1398 text-align: center;
1399 border: 1px solid #aaaaaa;
1400 background-color: #f9f9f9;
1401 padding: 5px;
1402 font-size: 95%;
1403 margin-bottom: 0.5em;
1404 margin-left: 0;
1405 margin-right: 0;
1406 }
1407
1408 #filetoc li {
1409 display: inline;
1410 list-style-type: none;
1411 padding-right: 2em;
1412 }
1413
1414 input#wpSummary {
1415 width: 80%;
1416 }
1417
1418 /* @bug 1714 */
1419 input#wpSave, input#wpDiff {
1420 margin-right: 0.33em;
1421 }
1422
1423 #editform .editOptions {
1424 display: inline;
1425 }
1426
1427 #wpSave {
1428 font-weight: bold;
1429 }
1430
1431 /* Classes for article validation */
1432
1433 table.revisionform_default {
1434 border: 1px solid #000000;
1435 }
1436
1437 table.revisionform_focus {
1438 border: 1px solid #000000;
1439 background-color:#00BBFF;
1440 }
1441
1442 tr.revision_tr_default {
1443 background-color:#EEEEEE;
1444 }
1445
1446 tr.revision_tr_first {
1447 background-color:#DDDDDD;
1448 }
1449
1450 p.revision_saved {
1451 color: green;
1452 font-weight:bold;
1453 }
1454
1455 #mw_trackbacks {
1456 border: solid 1px #bbbbff;
1457 background-color: #eeeeff;
1458 padding: 0.2em;
1459 }
1460
1461
1462 /* Allmessages table */
1463
1464 #allmessagestable th {
1465 background-color: #b2b2ff;
1466 }
1467
1468 #allmessagestable tr.orig {
1469 background-color: #ffe2e2;
1470 }
1471
1472 #allmessagestable tr.new {
1473 background-color: #e2ffe2;
1474 }
1475
1476 #allmessagestable tr.def {
1477 background-color: #f0f0ff;
1478 }
1479
1480
1481 /* noarticletext */
1482 div.noarticletext {
1483 border: 1px solid #ccc;
1484 background: #fff;
1485 padding: .2em 1em;
1486 color: #000;
1487 }
1488
1489 div#searchTargetContainer {
1490 left: 10px;
1491 top: 10px;
1492 width: 90%;
1493 background: white;
1494 }
1495
1496 div#searchTarget {
1497 padding: 3px;
1498 margin: 5px;
1499 background: #F0F0F0;
1500 border: solid 1px blue;
1501 }
1502
1503 div#searchTarget ul li {
1504 list-style: none;
1505 }
1506
1507 div#searchTarget ul li:before {
1508 color: orange;
1509 content: "\00BB \0020";
1510 }
1511
1512 div.multipageimagenavbox {
1513 border: solid 1px silver;
1514 padding: 4px;
1515 margin: 1em;
1516 -moz-border-radius: 6px;
1517 background: #f0f0f0;
1518 }
1519
1520 div.multipageimagenavbox div.thumb {
1521 border: none;
1522 margin-left: 2em;
1523 margin-right: 2em;
1524 }
1525
1526 div.multipageimagenavbox hr {
1527 margin: 6px;
1528 }
1529
1530 table.multipageimage td {
1531 text-align: center;
1532 }
1533
1534 /** Special:Version */
1535
1536 table#sv-ext, table#sv-hooks {
1537 margin: 1em;
1538 padding:0em;
1539 }
1540
1541 #sv-ext td, #sv-hooks td,
1542 #sv-ext th, #sv-hooks th {
1543 border: 1px solid #A0A0A0;
1544 padding: 0 0.15em 0 0.15em;
1545 }
1546 #sv-ext th, #sv-hooks th {
1547 background-color: #F0F0F0;
1548 color: black;
1549 padding: 0 0.15em 0 0.15em;
1550 }
1551 tr.sv-space{
1552 height: 0.8em;
1553 border:none;
1554 }
1555 tr.sv-space td { display: none; }
1556
1557 /*
1558 Table pager (e.g. Special:Imagelist)
1559 - remove underlines from the navigation link
1560 - collapse borders
1561 - set the borders to outsets (similar to Special:Allmessages)
1562 - remove line wrapping for all td and th, set background color
1563 - restore line wrapping for the last two table cells (description and size)
1564 */
1565 .TablePager_nav a { text-decoration: none; }
1566 .TablePager { border-collapse: collapse; }
1567 .TablePager, .TablePager td, .TablePager th {
1568 border: 1px solid #aaaaaa;
1569 padding: 0 0.15em 0 0.15em;
1570 }
1571 .TablePager th { background-color: #eeeeff }
1572 .TablePager td { background-color: #ffffff }
1573 .TablePager tr:hover td { background-color: #eeeeff }
1574
1575 .imagelist td, .imagelist th { white-space: nowrap }
1576 .imagelist .TablePager_col_links { background-color: #eeeeff }
1577 .imagelist .TablePager_col_img_description { white-space: normal }
1578 .imagelist th.TablePager_sort { background-color: #ccccff }
1579
1580 .templatesUsed { margin-top: 1.5em; }
1581
1582 .mw-summary-preview {
1583 margin: 0.1em 0;
1584 }
1585
1586 /* Convenience links on Special:Ipblocklist */
1587 p.mw-ipb-conveniencelinks {
1588 font-size: 90%;
1589 float: right;
1590 }
1591
1592 /* Friendlier slave lag warnings */
1593 div.mw-lag-warn-normal,
1594 div.mw-lag-warn-high {
1595 padding: 3px;
1596 text-align: center;
1597 margin: 3px auto;
1598 }
1599 div.mw-lag-warn-normal {
1600 border: 1px solid #FFCC66;
1601 background-color: #FFFFCC;
1602 }
1603 div.mw-lag-warn-high {
1604 font-weight: bold;
1605 border: 2px solid #FF0033;
1606 background-color: #FFCCCC;
1607 }
1608
1609 /* Recreating-deleted-page warning and log entries */
1610 div#mw-recreate-deleted-warn {
1611 padding: 3px;
1612 margin-bottom: 3px;
1613 border: 2px solid #2F6FAB;
1614 }
1615 div#mw-recreate-deleted-warn ul li {
1616 font-size: 90%;
1617 }
1618 .MediaTransformError {
1619 background-color: #ccc;
1620 padding: 0.1em;
1621 }
1622 .MediaTransformError td {
1623 text-align: center;
1624 vertical-align: middle;
1625 font-size: 90%;
1626 }