* (bug 9628) Show warnings about slave lag on Special:Contributions, Special:Watchlis...
[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
489 .hiddenStructure {
490 display: none;
491 speak: none;
492 }
493 img.tex {
494 vertical-align: middle;
495 }
496 span.texhtml {
497 font-family: serif;
498 }
499
500 /* Have a checkered background on images on the description pages and in galleries
501 to make transparency visible
502
503 #file img, .gallerybox .thumb img {
504 background: url(Checker-16x16.png) repeat;
505 }
506 */
507
508 /*
509 ** classes for special content elements like town boxes
510 ** intended to be referenced directly from the wiki src
511 */
512
513 /*
514 ** User styles
515 */
516 /* table standards */
517 table.rimage {
518 float: right;
519 position: relative;
520 margin-left: 1em;
521 margin-bottom: 1em;
522 text-align: center;
523 }
524 .toccolours {
525 border: 1px solid #aaa;
526 background-color: #f9f9f9;
527 padding: 5px;
528 font-size: 95%;
529 }
530 div.townBox {
531 position: relative;
532 float: right;
533 background: white;
534 margin-left: 1em;
535 border: 1px solid gray;
536 padding: .3em;
537 width: 200px;
538 overflow: hidden;
539 clear: right;
540 }
541 div.townBox dl {
542 padding: 0;
543 margin: 0 0 .3em;
544 font-size: 96%;
545 }
546 div.townBox dl dt {
547 background: none;
548 margin: .4em 0 0;
549 }
550 div.townBox dl dd {
551 margin: .1em 0 0 1.1em;
552 background-color: #f3f3f3;
553 }
554
555 /*
556 ** edit views etc
557 */
558 .special li {
559 line-height: 1.4em;
560 margin: 0;
561 padding: 0;
562 }
563
564 /* Page history styling */
565 /* the auto-generated edit comments */
566 .autocomment {
567 color: gray;
568 }
569 #pagehistory span.user {
570 margin-left: 1.4em;
571 margin-right: .4em;
572 }
573 #pagehistory span.minor {
574 font-weight: bold;
575 }
576 #pagehistory li {
577 border: 1px solid white;
578 }
579 #pagehistory li.selected {
580 background-color: #f9f9f9;
581 border: 1px dashed #aaa;
582 }
583
584 /*
585 ** keep the whitespace in front of the ^=, hides rule from konqueror
586 ** this is css3, the validator doesn't like it when validating as css2
587 */
588 #bodyContent a.external,
589 #bodyContent a[href ^="gopher://"] {
590 background: url(external.png) center right no-repeat;
591 padding-right: 13px;
592 }
593 #bodyContent a[href ^="https://"],
594 .link-https {
595 background: url(lock_icon.gif) center right no-repeat;
596 padding-right: 16px;
597 }
598 #bodyContent a[href ^="mailto:"],
599 .link-mailto {
600 background: url(mail_icon.gif) center right no-repeat;
601 padding-right: 18px;
602 }
603 #bodyContent a[href ^="news://"] {
604 background: url(news_icon.png) center right no-repeat;
605 padding-right: 18px;
606 }
607 #bodyContent a[href ^="ftp://"],
608 .link-ftp {
609 background: url(file_icon.gif) center right no-repeat;
610 padding-right: 18px;
611 }
612 #bodyContent a[href ^="irc://"],
613 .link-irc {
614 background: url(discussionitem_icon.gif) center right no-repeat;
615 padding-right: 18px;
616 }
617 #bodyContent a.external[href $=".ogg"], #bodyContent a.external[href $=".OGG"],
618 #bodyContent a.external[href $=".mid"], #bodyContent a.external[href $=".MID"],
619 #bodyContent a.external[href $=".midi"], #bodyContent a.external[href $=".MIDI"],
620 #bodyContent a.external[href $=".mp3"], #bodyContent a.external[href $=".MP3"],
621 #bodyContent a.external[href $=".wav"], #bodyContent a.external[href $=".WAV"],
622 #bodyContent a.external[href $=".wma"], #bodyContent a.external[href $=".WMA"],
623 .link-audio {
624 background: url("audio.png") center right no-repeat;
625 padding-right: 13px;
626 }
627 #bodyContent a.external[href $=".ogm"], #bodyContent a.external[href $=".OGM"],
628 #bodyContent a.external[href $=".avi"], #bodyContent a.external[href $=".AVI"],
629 #bodyContent a.external[href $=".mpeg"], #bodyContent a.external[href $=".MPEG"],
630 #bodyContent a.external[href $=".mpg"], #bodyContent a.external[href $=".MPG"],
631 .link-video {
632 background: url("video.png") center right no-repeat;
633 padding-right: 13px;
634 }
635 #bodyContent a.external[href $=".pdf"], #bodyContent a.external[href $=".PDF"],
636 #bodyContent a.external[href *=".pdf#"], #bodyContent a.external[href *=".PDF#"],
637 #bodyContent a.external[href *=".pdf?"], #bodyContent a.external[href *=".PDF?"],
638 .link-document {
639 background: url("document.png") center right no-repeat;
640 padding-right: 12px;
641 }
642
643 /* disable interwiki styling */
644 #bodyContent a.extiw,
645 #bodyContent a.extiw:active {
646 color: #36b;
647 background: none;
648 padding: 0;
649 }
650 #bodyContent a.external {
651 color: #36b;
652 }
653 /* this can be used in the content area to switch off
654 special external link styling */
655 #bodyContent .plainlinks a {
656 background: none !important;
657 padding: 0 !important;
658 }
659 /*
660 ** Structural Elements
661 */
662
663 /*
664 ** general portlet styles (elements in the quickbar)
665 */
666 .portlet {
667 border: none;
668 margin: 0 0 .5em;
669 padding: 0;
670 float: none;
671 width: 11.6em;
672 overflow: hidden;
673 }
674 .portlet h4 {
675 font-size: 95%;
676 font-weight: normal;
677 white-space: nowrap;
678 }
679 .portlet h5 {
680 background: transparent;
681 padding: 0 1em 0 .5em;
682 display: inline;
683 height: 1em;
684 text-transform: lowercase;
685 font-size: 91%;
686 font-weight: normal;
687 white-space: nowrap;
688 }
689 .portlet h6 {
690 background: #ffae2e;
691 border: 1px solid #2f6fab;
692 border-style: solid solid none solid;
693 padding: 0 1em 0 1em;
694 text-transform: lowercase;
695 display: block;
696 font-size: 1em;
697 height: 1.2em;
698 font-weight: normal;
699 white-space: nowrap;
700 }
701 .pBody {
702 font-size: 95%;
703 background-color: white;
704 color: black;
705 border-collapse: collapse;
706 border: 1px solid #aaa;
707 padding: 0 .8em .3em .5em;
708 }
709 .portlet h1,
710 .portlet h2,
711 .portlet h3,
712 .portlet h4 {
713 margin: 0;
714 padding: 0;
715 }
716 .portlet ul {
717 line-height: 1.5em;
718 list-style-type: square;
719 list-style-image: url(bullet.gif);
720 font-size: 95%;
721 }
722 .portlet li {
723 padding: 0;
724 margin: 0;
725 }
726
727 /*
728 ** Logo properties
729 */
730
731 /* @media screen, projection { */
732 #p-logo {
733 top: 0;
734 left: 0;
735 position: absolute; /*needed to use z-index */
736 z-index: 3;
737 height: 155px;
738 width: 12em;
739 overflow: visible;
740 }
741 #p-logo h5 {
742 display: none;
743 }
744 #p-logo a,
745 #p-logo a:hover {
746 display: block;
747 height: 155px;
748 width: 12.2em;
749 background-repeat: no-repeat;
750 background-position: 35% 50% !important;
751 text-decoration: none;
752 }
753 /* } */
754 /*
755 ** the navigation portlet
756 */
757
758 /* @media screen, projection { */
759 #p-navigation {
760 position: relative;
761 z-index: 3;
762 }
763 #p-navigation a {
764 display: block;
765 }
766 #p-navigation li.active a, #p-navigation li.active a:hover {
767 display: inline;
768 }
769 /* } */
770
771 #p-navigation .pBody {
772 padding-right: 0;
773 }
774
775 #p-navigation li.active a, #p-navigation li.active a:hover {
776 text-decoration: none;
777 font-weight: bold;
778 }
779
780
781 /*
782 ** Search portlet
783 */
784 /* @media screen, projection { */
785 #p-search {
786 position: relative;
787 z-index: 3;
788 }
789 /* } */
790 input.searchButton {
791 margin-top: 1px;
792 font-size: 95%;
793 }
794 #searchGoButton {
795 padding-left: .5em;
796 padding-right: .5em;
797 font-weight: bold;
798 }
799 #searchInput {
800 width: 10.9em;
801 margin: 0;
802 font-size: 95%;
803 }
804 #p-search .pBody {
805 padding: .5em .4em .4em .4em;
806 text-align: center;
807 }
808
809 /*
810 ** the personal toolbar
811 */
812 /* @media screen, projection { */
813 #p-personal {
814 position: absolute;
815 left: 0;
816 top: 0;
817 z-index: 0;
818 }
819 #p-personal {
820 width: 100%;
821 white-space: nowrap;
822 padding: 0;
823 margin: 0;
824 border: none;
825 background: none;
826 overflow: visible;
827 line-height: 1.2em;
828 }
829 #p-personal h5 {
830 display: none;
831 }
832 #p-personal .portlet,
833 #p-personal .pBody {
834 z-index: 0;
835 padding: 0;
836 margin: 0;
837 border: none;
838 overflow: visible;
839 background: none;
840 }
841 /* this is the ul contained in the portlet */
842 #p-personal ul {
843 border: none;
844 line-height: 1.4em;
845 color: #2f6fab;
846 padding: 0 2em 0 3em;
847 margin: 0;
848 text-align: right;
849 list-style: none;
850 z-index: 0;
851 background: none;
852 cursor: default;
853 }
854 #p-personal li {
855 z-index: 0;
856 border: none;
857 padding: 0;
858 display: inline;
859 color: #2f6fab;
860 margin-left: 1em;
861 line-height: 1.2em;
862 background: none;
863 }
864 #p-personal li a {
865 text-decoration: none;
866 color: #005896;
867 padding-bottom: .2em;
868 background: none;
869 }
870 #p-personal li a:hover {
871 background-color: white;
872 padding-bottom: .2em;
873 text-decoration: none;
874 }
875 #p-personal li.active a:hover {
876 background-color: transparent;
877 }
878 /* the icon in front of the user name, single quotes
879 in bg url to hide it from iemac */
880 li#pt-userpage,
881 li#pt-anonuserpage,
882 li#pt-login {
883 background: url(user.gif) top left no-repeat;
884 padding-left: 20px;
885 text-transform: none;
886 }
887 /* } */
888 #p-personal ul {
889 text-transform: lowercase;
890 }
891 #p-personal li.active {
892 font-weight: bold;
893 }
894 /*
895 ** the page-related actions- page/talk, edit etc
896 */
897 /* @media screen, projection { */
898 #p-cactions {
899 position: absolute;
900 top: 1.3em;
901 left: 11.5em;
902 margin: 0;
903 white-space: nowrap;
904 width: 76%;
905 line-height: 1.1em;
906 overflow: visible;
907 background: none;
908 border-collapse: collapse;
909 padding-left: 1em;
910 list-style: none;
911 font-size: 95%;
912 }
913 #p-cactions ul {
914 list-style: none;
915 }
916 #p-cactions li {
917 display: inline;
918 border: 1px solid #aaa;
919 border-bottom: none;
920 padding: 0 0 .1em 0;
921 margin: 0 .3em 0 0;
922 overflow: visible;
923 background: white;
924 }
925 #p-cactions li.selected {
926 border-color: #fabd23;
927 padding: 0 0 .2em 0;
928 font-weight: bold;
929 }
930 #p-cactions li a {
931 background-color: #fbfbfb;
932 color: #002bb8;
933 border: none;
934 padding: 0 .8em .3em;
935 position: relative;
936 z-index: 0;
937 margin: 0;
938 text-decoration: none;
939 }
940 #p-cactions li.selected a {
941 z-index: 3;
942 padding: 0 1em .2em!important;
943 background-color: white;
944 }
945 #p-cactions .new a {
946 color: #ba0000;
947 }
948 #p-cactions li a:hover {
949 z-index: 3;
950 text-decoration: none;
951 background-color: white;
952 }
953 #p-cactions h5 {
954 display: none;
955 }
956 #p-cactions li.istalk {
957 margin-right: 0;
958 }
959 #p-cactions li.istalk a {
960 padding-right: .5em;
961 }
962 #p-cactions #ca-addsection a {
963 padding-left: .4em;
964 padding-right: .4em;
965 }
966 /* offsets to distinguish the tab groups */
967 li#ca-talk {
968 margin-right: 1.6em;
969 }
970 li#ca-watch, li#ca-unwatch, li#ca-varlang-0, li#ca-print {
971 margin-left: 1.6em;
972 }
973 #p-cactions .pBody {
974 font-size: 1em;
975 background-color: transparent;
976 color: inherit;
977 border-collapse: inherit;
978 border: 0;
979 padding: 0;
980 }
981 /* } */
982 #p-cactions .hiddenStructure {
983 display: none;
984 }
985 #p-cactions li a {
986 text-transform: lowercase;
987 }
988
989 /*
990 ** the remaining portlets
991 */
992 /* @media screen, projection { */
993 #p-tbx,
994 #p-lang {
995 position: relative;
996 z-index: 3;
997 }
998 /* } */
999
1000 /* TODO: #t-iscite is only used by the Cite extension, come up with some
1001 * system which allows extensions to add to this file on the fly
1002 */
1003 #t-ispermalink, #t-iscite {
1004 color: #999;
1005 }
1006 /*
1007 ** footer
1008 */
1009 #footer {
1010 background-color: white;
1011 border-top: 1px solid #fabd23;
1012 border-bottom: 1px solid #fabd23;
1013 margin: .6em 0 1em 0;
1014 padding: .4em 0 1.2em 0;
1015 text-align: center;
1016 font-size: 90%;
1017 }
1018 #footer li {
1019 display: inline;
1020 margin: 0 1.3em;
1021 }
1022 #f-poweredbyico, #f-copyrightico {
1023 margin: 0 8px;
1024 position: relative;
1025 top: -2px; /* Bump it up just a tad */
1026 }
1027 #f-poweredbyico {
1028 float: right;
1029 height: 1%;
1030 }
1031 #f-copyrightico {
1032 float: left;
1033 height: 1%;
1034 }
1035
1036 /* js pref toc */
1037 #preftoc {
1038 margin: 0;
1039 padding: 0;
1040 width: 100%;
1041 clear: both;
1042 }
1043 #preftoc li {
1044 background-color: #f0f0f0;
1045 color: #000;
1046 }
1047 /* @media screen, projection { */
1048 #preftoc li {
1049 margin: 1px -2px 1px 2px;
1050 float: left;
1051 padding: 2px 0 3px 0;
1052 border: 1px solid #fff;
1053 border-right-color: #716f64;
1054 border-bottom: 0;
1055 position: relative;
1056 white-space: nowrap;
1057 list-style-type: none;
1058 list-style-image: none;
1059 z-index: 3;
1060 }
1061 /* } */
1062 #preftoc li.selected {
1063 font-weight: bold;
1064 background-color: #f9f9f9;
1065 border: 1px solid #aaa;
1066 border-bottom: none;
1067 cursor: default;
1068 top: 1px;
1069 padding-top: 2px;
1070 margin-right: -3px;
1071 }
1072 #preftoc > li.selected {
1073 top: 2px;
1074 }
1075 #preftoc a,
1076 #preftoc a:active {
1077 display: block;
1078 color: #000;
1079 padding: 0 .7em;
1080 position: relative;
1081 text-decoration: none;
1082 }
1083 #preftoc li.selected a {
1084 cursor: default;
1085 text-decoration: none;
1086 }
1087 #prefcontrol {
1088 padding-top: 2em;
1089 clear: both;
1090 }
1091 #preferences {
1092 margin: 0;
1093 border: 1px solid #aaa;
1094 clear: both;
1095 padding: 1.5em;
1096 background-color: #F9F9F9;
1097 }
1098 .prefsection {
1099 border: none;
1100 padding: 0;
1101 margin: 0;
1102 }
1103 .prefsection fieldset {
1104 border: 1px solid #aaa;
1105 float: left;
1106 margin-right: 2em;
1107 }
1108 .prefsection legend {
1109 font-weight: bold;
1110 }
1111 .prefsection table, .prefsection legend {
1112 background-color: #F9F9F9;
1113 }
1114 /* @media screen, projection { */
1115 .mainLegend {
1116 display: none;
1117 }
1118 /* } */
1119 div.prefsectiontip {
1120 font-size: x-small;
1121 padding: .2em 2em;
1122 color: #666;
1123 }
1124 .btnSavePrefs {
1125 font-weight: bold;
1126 padding-left: .3em;
1127 padding-right: .3em;
1128 }
1129
1130 .preferences-login {
1131 clear: both;
1132 margin-bottom: 1.5em;
1133 }
1134
1135 .prefcache {
1136 font-size: 90%;
1137 margin-top: 2em;
1138 }
1139
1140 div#userloginForm form,
1141 div#userlogin form#userlogin2 {
1142 margin: 0 3em 1em 0;
1143 border: 1px solid #aaa;
1144 clear: both;
1145 padding: 1.5em 2em;
1146 background-color: #f9f9f9;
1147 float: left;
1148 }
1149
1150 div#userloginForm table,
1151 div#userlogin form#userlogin2 table {
1152 background-color: #f9f9f9;
1153 }
1154
1155 div#userloginForm h2,
1156 div#userlogin form#userlogin2 h2 {
1157 padding-top: 0;
1158 }
1159
1160 div#userlogin .captcha,
1161 div#userloginForm .captcha {
1162 border: 1px solid #bbb;
1163 padding: 1.5em 2em;
1164 background-color: white;
1165 }
1166
1167
1168 #userloginprompt, #languagelinks {
1169 font-size: 85%;
1170 }
1171
1172 #login-sectiontip {
1173 font-size: 85%;
1174 line-height: 1.2;
1175 padding-top: 2em;
1176 }
1177
1178 #userlogin .loginText, #userlogin .loginPassword {
1179 width: 12em;
1180 }
1181
1182 #userloginlink a, #wpLoginattempt, #wpCreateaccount {
1183 font-weight: bold;
1184 }
1185
1186 /* @media screen, projection { */
1187 /*
1188 ** IE/Mac fixes, hope to find a validating way to move this
1189 ** to a separate stylesheet. This would work but doesn't validate:
1190 ** @import("IEMacFixes.css");
1191 */
1192 /* tabs: border on the a, not the div */
1193 * > html #p-cactions li { border: none; }
1194 * > html #p-cactions li a {
1195 border: 1px solid #aaa;
1196 border-bottom: none;
1197 }
1198 * > html #p-cactions li.selected a { border-color: #fabd23; }
1199 /* footer icons need a fixed width */
1200 * > html #f-poweredbyico,
1201 * > html #f-copyrightico { width: 88px; }
1202 * > html #bodyContent,
1203 * > html #bodyContent pre {
1204 overflow-x: auto;
1205 width: 100%;
1206 padding-bottom: 25px;
1207 }
1208 /* } */
1209
1210 /* more IE fixes */
1211 /* float/negative margin brokenness */
1212 * html #footer {margin-top: 0;}
1213 * html #column-content {
1214 display: inline;
1215 margin-bottom: 0;
1216 }
1217 * html div.editsection { font-size: smaller; }
1218 #pagehistory li.selected { position: relative; }
1219
1220 /* Mac IE 5.0 fix; floated content turns invisible */
1221 * > html #column-content {
1222 float: none;
1223 }
1224 * > html #column-one {
1225 position: absolute;
1226 left: 0;
1227 top: 0;
1228 }
1229 * > html #footer {
1230 margin-left: 13.2em;
1231 }
1232 .redirectText {
1233 font-size: 150%;
1234 margin: 5px;
1235 }
1236
1237 .printfooter {
1238 display: none;
1239 }
1240
1241 .not-patrolled {
1242 background-color: #ffa;
1243 }
1244 div.patrollink {
1245 font-size: 75%;
1246 text-align: right;
1247 }
1248 span.newpage, span.minor, span.searchmatch, span.bot {
1249 font-weight: bold;
1250 }
1251 span.unpatrolled {
1252 font-weight: bold;
1253 color: red;
1254 }
1255
1256 span.searchmatch {
1257 color: red;
1258 }
1259 .sharedUploadNotice {
1260 font-style: italic;
1261 }
1262
1263 span.updatedmarker {
1264 color: black;
1265 background-color: #0f0;
1266 }
1267
1268 table.gallery {
1269 border: 1px solid #ccc;
1270 margin: 2px;
1271 padding: 2px;
1272 background-color: white;
1273 }
1274
1275 table.gallery tr {
1276 vertical-align: top;
1277 }
1278
1279 table.gallery td {
1280 vertical-align: top;
1281 background-color: #f9f9f9;
1282 border: solid 2px white;
1283 }
1284 /* Keep this temporarily so that cached pages will display right */
1285 table.gallery td.galleryheader {
1286 text-align: center;
1287 font-weight: bold;
1288 }
1289 table.gallery caption {
1290 font-weight: bold;
1291 }
1292
1293 div.gallerybox {
1294 margin: 2px;
1295 }
1296
1297 div.gallerybox div.thumb {
1298 text-align: center;
1299 border: 1px solid #ccc;
1300 margin: 2px;
1301 }
1302
1303 div.gallerytext {
1304 overflow: hidden;
1305 font-size: 94%;
1306 padding: 2px 4px;
1307 }
1308
1309 span.comment {
1310 font-style: italic;
1311 }
1312
1313 span.changedby {
1314 font-size: 95%;
1315 }
1316
1317 .previewnote {
1318 text-indent: 3em;
1319 color: #c00;
1320 border-bottom: 1px solid #aaa;
1321 padding-bottom: 1em;
1322 margin-bottom: 1em;
1323 }
1324
1325 .previewnote p {
1326 margin: 0;
1327 padding: 0;
1328 }
1329
1330 .editExternally {
1331 border: 1px solid gray;
1332 background-color: #ffffff;
1333 padding: 3px;
1334 margin-top: 0.5em;
1335 float: left;
1336 font-size: small;
1337 text-align: center;
1338 }
1339 .editExternallyHelp {
1340 font-style: italic;
1341 color: gray;
1342 }
1343
1344 li span.deleted, span.history-deleted {
1345 text-decoration: line-through;
1346 color: #888;
1347 font-style: italic;
1348 }
1349
1350 .toggle {
1351 margin-left: 2em;
1352 text-indent: -2em;
1353 }
1354
1355 /* Classes for EXIF data display */
1356 table.mw_metadata {
1357 font-size: 0.8em;
1358 margin-left: 0.5em;
1359 margin-bottom: 0.5em;
1360 width: 300px;
1361 }
1362
1363 table.mw_metadata caption {
1364 font-weight: bold;
1365 }
1366
1367 table.mw_metadata th {
1368 font-weight: normal;
1369 }
1370
1371 table.mw_metadata td {
1372 padding: 0.1em;
1373 }
1374
1375 table.mw_metadata {
1376 border: none;
1377 border-collapse: collapse;
1378 }
1379
1380 table.mw_metadata td, table.mw_metadata th {
1381 text-align: center;
1382 border: 1px solid #aaaaaa;
1383 padding-left: 0.1em;
1384 padding-right: 0.1em;
1385 }
1386
1387 table.mw_metadata th {
1388 background-color: #f9f9f9;
1389 }
1390
1391 table.mw_metadata td {
1392 background-color: #fcfcfc;
1393 }
1394
1395 table.collapsed tr.collapsable {
1396 display: none;
1397 }
1398
1399
1400 /* filetoc */
1401 ul#filetoc {
1402 text-align: center;
1403 border: 1px solid #aaaaaa;
1404 background-color: #f9f9f9;
1405 padding: 5px;
1406 font-size: 95%;
1407 margin-bottom: 0.5em;
1408 margin-left: 0;
1409 margin-right: 0;
1410 }
1411
1412 #filetoc li {
1413 display: inline;
1414 list-style-type: none;
1415 padding-right: 2em;
1416 }
1417
1418 input#wpSummary {
1419 width: 80%;
1420 }
1421
1422 /* @bug 1714 */
1423 input#wpSave, input#wpDiff {
1424 margin-right: 0.33em;
1425 }
1426
1427 #editform .editOptions {
1428 display: inline;
1429 }
1430
1431 #wpSave {
1432 font-weight: bold;
1433 }
1434
1435 /* Classes for article validation */
1436
1437 table.revisionform_default {
1438 border: 1px solid #000000;
1439 }
1440
1441 table.revisionform_focus {
1442 border: 1px solid #000000;
1443 background-color:#00BBFF;
1444 }
1445
1446 tr.revision_tr_default {
1447 background-color:#EEEEEE;
1448 }
1449
1450 tr.revision_tr_first {
1451 background-color:#DDDDDD;
1452 }
1453
1454 p.revision_saved {
1455 color: green;
1456 font-weight:bold;
1457 }
1458
1459 #mw_trackbacks {
1460 border: solid 1px #bbbbff;
1461 background-color: #eeeeff;
1462 padding: 0.2em;
1463 }
1464
1465
1466 /* Allmessages table */
1467
1468 #allmessagestable th {
1469 background-color: #b2b2ff;
1470 }
1471
1472 #allmessagestable tr.orig {
1473 background-color: #ffe2e2;
1474 }
1475
1476 #allmessagestable tr.new {
1477 background-color: #e2ffe2;
1478 }
1479
1480 #allmessagestable tr.def {
1481 background-color: #f0f0ff;
1482 }
1483
1484
1485 /* noarticletext */
1486 div.noarticletext {
1487 border: 1px solid #ccc;
1488 background: #fff;
1489 padding: .2em 1em;
1490 color: #000;
1491 }
1492
1493 div#searchTargetContainer {
1494 left: 10px;
1495 top: 10px;
1496 width: 90%;
1497 background: white;
1498 }
1499
1500 div#searchTarget {
1501 padding: 3px;
1502 margin: 5px;
1503 background: #F0F0F0;
1504 border: solid 1px blue;
1505 }
1506
1507 div#searchTarget ul li {
1508 list-style: none;
1509 }
1510
1511 div#searchTarget ul li:before {
1512 color: orange;
1513 content: "\00BB \0020";
1514 }
1515
1516 div.multipageimagenavbox {
1517 border: solid 1px silver;
1518 padding: 4px;
1519 margin: 1em;
1520 -moz-border-radius: 6px;
1521 background: #f0f0f0;
1522 }
1523
1524 div.multipageimagenavbox div.thumb {
1525 border: none;
1526 margin-left: 2em;
1527 margin-right: 2em;
1528 }
1529
1530 div.multipageimagenavbox hr {
1531 margin: 6px;
1532 }
1533
1534 table.multipageimage td {
1535 text-align: center;
1536 }
1537
1538 /** Special:Version */
1539
1540 table#sv-ext, table#sv-hooks {
1541 margin: 1em;
1542 padding:0em;
1543 }
1544
1545 #sv-ext td, #sv-hooks td,
1546 #sv-ext th, #sv-hooks th {
1547 border: 1px solid #A0A0A0;
1548 padding: 0 0.15em 0 0.15em;
1549 }
1550 #sv-ext th, #sv-hooks th {
1551 background-color: #F0F0F0;
1552 color: black;
1553 padding: 0 0.15em 0 0.15em;
1554 }
1555 tr.sv-space{
1556 height: 0.8em;
1557 border:none;
1558 }
1559 tr.sv-space td { display: none; }
1560
1561 /*
1562 Table pager (e.g. Special:Imagelist)
1563 - remove underlines from the navigation link
1564 - collapse borders
1565 - set the borders to outsets (similar to Special:Allmessages)
1566 - remove line wrapping for all td and th, set background color
1567 - restore line wrapping for the last two table cells (description and size)
1568 */
1569 .TablePager_nav a { text-decoration: none; }
1570 .TablePager { border-collapse: collapse; }
1571 .TablePager, .TablePager td, .TablePager th {
1572 border: 1px solid #aaaaaa;
1573 padding: 0 0.15em 0 0.15em;
1574 }
1575 .TablePager th { background-color: #eeeeff }
1576 .TablePager td { background-color: #ffffff }
1577 .TablePager tr:hover td { background-color: #eeeeff }
1578
1579 .imagelist td, .imagelist th { white-space: nowrap }
1580 .imagelist .TablePager_col_links { background-color: #eeeeff }
1581 .imagelist .TablePager_col_img_description { white-space: normal }
1582 .imagelist th.TablePager_sort { background-color: #ccccff }
1583
1584 .templatesUsed { margin-top: 1.5em; }
1585
1586 .mw-summary-preview {
1587 margin: 0.1em 0;
1588 }
1589
1590 /* Convenience links on Special:Ipblocklist */
1591 p.mw-ipb-conveniencelinks {
1592 font-size: 90%;
1593 float: right;
1594 }
1595
1596 /* Friendlier slave lag warnings */
1597 div.mw-lag-warn-normal,
1598 div.mw-lag-warn-high {
1599 width: 75%;
1600 padding: 3px;
1601 text-align: center;
1602 margin: 3px auto;
1603 }
1604 div.mw-lag-warn-normal {
1605 border: 1px solid #FFCC66;
1606 background-color: #FFFFCC;
1607 }
1608 div.mw-lag-warn-high {
1609 font-weight: bold;
1610 border: 2px solid #CC3333;
1611 background-color: #CC9999;
1612 }
1613
1614 /**
1615 * Here is some stuff that's ACTUALLY COMMON TO ALL SKINS.
1616 * When the day comes, it can be moved to a *real* common.css.
1617 */
1618 .mw-plusminus-null { color: #aaa; }
1619 .texvc { direction: ltr; unicode-bidi: embed; }
1620 /* Stop floats from intruding into edit area in previews */
1621 #toolbar, #wpTextbox1 { clear: both; }
1622
1623 .MediaTransformError {
1624 background-color: #ccc;
1625 padding: 0.1em;
1626 }
1627 .MediaTransformError td {
1628 text-align: center;
1629 vertical-align: middle;
1630 font-size: 90%;
1631 }