* 400px is too big for small screens
[lhc/web/wiklou.git] / skins / monobook / handheld.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 handhelds. All rules not marked media-specific are shared
14 * with main.css and should be updated in tandem. The rules can't be in the
15 * same file because old browsers like IE5 won't obey @media rules.
16 *
17 * Rules that are handheld-specific are given @media rules in case old browsers
18 * don't recognize the media attribute and load this file anyway.
19 */
20
21 #content {
22 background: white;
23 color: black;
24 border: 1px solid #aaa;
25 border-right: none;
26 line-height: 1.5em;
27 }
28 /* the left column width is specified in class .portlet */
29
30 /* Font size:
31 ** We take advantage of keyword scaling- browsers won't go below 9px
32 ** More at http://www.w3.org/2003/07/30-font-size
33 ** http://style.cleverchimp.com/font_size_intervals/altintervals.html
34 */
35
36 body {
37 font: x-small sans-serif;
38 background: #f9f9f9 url(headbg.jpg) 0 0 no-repeat;
39 color: black;
40 margin: 0;
41 padding: 0;
42 }
43
44 /* scale back up to a sane default */
45 #globalWrapper {
46 font-size: 127%;
47 width: 100%;
48 margin: 0;
49 padding: 0;
50 }
51 .visualClear {
52 clear: both;
53 }
54
55 /* general styles */
56
57 table {
58 font-size: 100%;
59 color: black;
60 /* we don't want the bottom borders of <h2>s to be visible through
61 floated tables */
62 background-color: white;
63 }
64 a {
65 text-decoration: none;
66 color: #002bb8;
67 background: none;
68 }
69 a:visited {
70 color: #5a3696;
71 }
72 a:active {
73 color: #faa700;
74 }
75 a:hover {
76 text-decoration: underline;
77 }
78 a.stub {
79 color: #772233;
80 }
81 a.new, #p-personal a.new {
82 color: #ba0000;
83 }
84 a.new:visited, #p-personal a.new:visited {
85 color: #a55858;
86 }
87
88 img {
89 border: none;
90 vertical-align: middle;
91 }
92 p img {
93 margin: 0;
94 }
95
96 hr {
97 height: 1px;
98 color: #aaa;
99 background-color: #aaa;
100 border: 0;
101 margin: .2em 0 .2em 0;
102 }
103
104 h1, h2, h3, h4, h5, h6 {
105 color: black;
106 background: none;
107 font-weight: normal;
108 margin: 0;
109 padding-top: .5em;
110 padding-bottom: .17em;
111 border-bottom: 1px solid #aaa;
112 }
113 h1 { font-size: 188%; }
114 h1 .editsection { font-size: 53%; }
115 h2 { font-size: 150%; }
116 h2 .editsection { font-size: 67%; }
117 h3, h4, h5, h6 {
118 border-bottom: none;
119 font-weight: bold;
120 }
121 h3 { font-size: 132%; }
122 h3 .editsection { font-size: 76%; font-weight: normal; }
123 h4 { font-size: 116%; }
124 h4 .editsection { font-size: 86%; font-weight: normal; }
125 h5 { font-size: 100%; }
126 h5 .editsection { font-weight: normal; }
127 h6 { font-size: 80%; }
128 h6 .editsection { font-size: 125%; font-weight: normal; }
129
130 .editsection {
131 float: right;
132 margin-left: 5px;
133 }
134
135 ul {
136 line-height: 1.5em;
137 list-style-type: square;
138 margin: .3em 0 0 1.5em;
139 padding: 0;
140 list-style-image: url(bullet.gif);
141 }
142 ol {
143 line-height: 1.5em;
144 margin: .3em 0 0 3.2em;
145 padding: 0;
146 list-style-image: none;
147 }
148 li {
149 margin-bottom: .1em;
150 }
151 dt {
152 font-weight: bold;
153 margin-bottom: .1em;
154 }
155 dl {
156 margin-top: .2em;
157 margin-bottom: .5em;
158 }
159 dd {
160 line-height: 1.5em;
161 margin-left: 2em;
162 margin-bottom: .1em;
163 }
164
165 fieldset {
166 border: 1px solid #2f6fab;
167 margin: 1em 0 1em 0;
168 padding: 0 1em 1em;
169 line-height: 1.5em;
170 }
171 legend {
172 padding: .5em;
173 font-size: 95%;
174 }
175 form {
176 border: none;
177 margin: 0;
178 }
179
180 textarea {
181 width: 100%;
182 padding: .1em;
183 }
184
185 input.historysubmit {
186 padding: 0 .3em .3em .3em !important;
187 font-size: 94%;
188 cursor: pointer;
189 height: 1.7em !important;
190 margin-left: 1.6em;
191 }
192 select {
193 vertical-align: top;
194 }
195 abbr, acronym, .explain {
196 border-bottom: 1px dotted black;
197 color: black;
198 background: none;
199 cursor: help;
200 }
201 q {
202 font-family: Times, "Times New Roman", serif;
203 font-style: italic;
204 }
205 /* disabled for now
206 blockquote {
207 font-family: Times, "Times New Roman", serif;
208 font-style: italic;
209 }*/
210 code {
211 background-color: #f9f9f9;
212 }
213 pre {
214 padding: 1em;
215 border: 1px dashed #2f6fab;
216 color: black;
217 background-color: #f9f9f9;
218 line-height: 1.1em;
219 }
220
221 /*
222 ** the main content area
223 */
224
225 #contentSub, #contentSub2 {
226 font-size: 84%;
227 line-height: 1.2em;
228 margin: 0 0 1.4em 1em;
229 color: #7d7d7d;
230 width: auto;
231 }
232 span.subpages {
233 display: block;
234 }
235
236 /* Some space under the headers in the content area */
237 #bodyContent h1, #bodyContent h2 {
238 margin-bottom: .6em;
239 }
240 #bodyContent h3, #bodyContent h4, #bodyContent h5 {
241 margin-bottom: .3em;
242 }
243 .firstHeading {
244 margin-bottom: .1em;
245 }
246
247 /* user notification thing */
248 .usermessage {
249 background-color: #ffce7b;
250 border: 1px solid #ffa500;
251 color: black;
252 font-weight: bold;
253 margin: 2em 0 1em;
254 padding: .5em 1em;
255 vertical-align: middle;
256 }
257 #siteNotice {
258 text-align: center;
259 font-size: 95%;
260 padding: 0 .9em;
261 }
262 #siteNotice p {
263 margin: 0;
264 padding: 0;
265 }
266 .error {
267 color: red;
268 font-size: larger;
269 }
270 .errorbox, .successbox {
271 font-size: larger;
272 border: 2px solid;
273 padding: .5em 1em;
274 float: left;
275 margin-bottom: 2em;
276 color: #000;
277 }
278 .errorbox {
279 border-color: red;
280 background-color: #fff2f2;
281 }
282 .successbox {
283 border-color: green;
284 background-color: #dfd;
285 }
286 .errorbox h2, .successbox h2 {
287 font-size: 1em;
288 font-weight: bold;
289 display: inline;
290 margin: 0 .5em 0 0;
291 border: none;
292 }
293
294 #catlinks {
295 border: 1px solid #aaa;
296 background-color: #f9f9f9;
297 padding: 5px;
298 margin-top: 1em;
299 clear: both;
300 }
301 /* currently unused, intended to be used by a metadata box
302 in the bottom-right corner of the content area */
303 .documentDescription {
304 /* The summary text describing the document */
305 font-weight: bold;
306 display: block;
307 margin: 1em 0;
308 line-height: 1.5em;
309 }
310 .documentByLine {
311 text-align: right;
312 font-size: 90%;
313 clear: both;
314 font-weight: normal;
315 color: #76797c;
316 }
317
318 /* emulate center */
319 .center {
320 width: 100%;
321 text-align: center;
322 }
323 *.center * {
324 margin-left: auto;
325 margin-right: auto;
326 }
327 /* small for tables and similar */
328 .small, .small * {
329 font-size: 94%;
330 }
331 table.small {
332 font-size: 100%;
333 }
334
335 /*
336 ** content styles
337 */
338
339 #toc,
340 .toc,
341 .mw-warning {
342 border: 1px solid #aaa;
343 background-color: #f9f9f9;
344 padding: 5px;
345 font-size: 95%;
346 }
347 #toc h2,
348 .toc h2 {
349 display: inline;
350 border: none;
351 padding: 0;
352 font-size: 100%;
353 font-weight: bold;
354 }
355 #toc #toctitle,
356 .toc #toctitle,
357 #toc .toctitle,
358 .toc .toctitle {
359 text-align: center;
360 }
361 #toc ul,
362 .toc ul {
363 list-style-type: none;
364 list-style-image: none;
365 margin-left: 0;
366 padding-left: 0;
367 text-align: left;
368 }
369 #toc ul ul,
370 .toc ul ul {
371 margin: 0 0 0 2em;
372 }
373 #toc .toctoggle,
374 .toc .toctoggle {
375 font-size: 94%;
376 }
377
378 .mw-warning {
379 margin-left: 50px;
380 margin-right: 50px;
381 text-align: center;
382 }
383
384 /* images */
385 div.floatright, table.floatright {
386 clear: right;
387 float: right;
388 position: relative;
389 margin: 0 0 .5em .5em;
390 border: 0;
391 /*
392 border: .5em solid white;
393 border-width: .5em 0 .8em 1.4em;
394 */
395 }
396 div.floatright p { font-style: italic; }
397 div.floatleft, table.floatleft {
398 float: left;
399 clear: left;
400 position: relative;
401 margin: 0 .5em .5em 0;
402 border: 0;
403 /*
404 margin: .3em .5em .5em 0;
405 border: .5em solid white;
406 border-width: .5em 1.4em .8em 0;
407 */
408 }
409 div.floatleft p { font-style: italic; }
410 /* thumbnails */
411 div.thumb {
412 margin-bottom: .5em;
413 border-style: solid;
414 border-color: white;
415 width: auto;
416 }
417 div.thumbinner {
418 border: 1px solid #ccc;
419 padding: 3px !important;
420 background-color: #f9f9f9;
421 font-size: 94%;
422 text-align: center;
423 overflow: hidden;
424 }
425 html .thumbimage {
426 border: 1px solid #ccc;
427 }
428 html .thumbcaption {
429 border: none;
430 text-align: left;
431 line-height: 1.4em;
432 padding: 3px !important;
433 font-size: 94%;
434 }
435 div.magnify {
436 float: right;
437 border: none !important;
438 background: none !important;
439 }
440 div.magnify a, div.magnify img {
441 display: block;
442 border: none !important;
443 background: none !important;
444 }
445 div.tright {
446 clear: right;
447 float: right;
448 border-width: .5em 0 .8em 1.4em;
449 }
450 div.tleft {
451 float: left;
452 clear: left;
453 margin-right: .5em;
454 border-width: .5em 1.4em .8em 0;
455 }
456
457 .hiddenStructure {
458 display: none;
459 speak: none;
460 }
461 img.tex {
462 vertical-align: middle;
463 }
464 span.texhtml {
465 font-family: serif;
466 }
467
468 /*
469 ** classes for special content elements like town boxes
470 ** intended to be referenced directly from the wiki src
471 */
472
473 /*
474 ** User styles
475 */
476 /* table standards */
477 table.rimage {
478 float: right;
479 position: relative;
480 margin-left: 1em;
481 margin-bottom: 1em;
482 text-align: center;
483 }
484 .toccolours {
485 border: 1px solid #aaa;
486 background-color: #f9f9f9;
487 padding: 5px;
488 font-size: 95%;
489 }
490 div.townBox {
491 position: relative;
492 float: right;
493 background: white;
494 margin-left: 1em;
495 border: 1px solid gray;
496 padding: .3em;
497 width: 200px;
498 overflow: hidden;
499 clear: right;
500 }
501 div.townBox dl {
502 padding: 0;
503 margin: 0 0 .3em;
504 font-size: 96%;
505 }
506 div.townBox dl dt {
507 background: none;
508 margin: .4em 0 0;
509 }
510 div.townBox dl dd {
511 margin: .1em 0 0 1.1em;
512 background-color: #f3f3f3;
513 }
514
515 /*
516 ** edit views etc
517 */
518 .special li {
519 line-height: 1.4em;
520 margin: 0;
521 padding: 0;
522 }
523
524 /* Page history styling */
525 /* the auto-generated edit comments */
526 .autocomment {
527 color: gray;
528 }
529 #pagehistory span.user {
530 margin-left: 1.4em;
531 margin-right: .4em;
532 }
533 #pagehistory span.minor {
534 font-weight: bold;
535 }
536 #pagehistory li {
537 border: 1px solid white;
538 }
539 #pagehistory li.selected {
540 background-color: #f9f9f9;
541 border: 1px dashed #aaa;
542 }
543
544 /*
545 ** Diff rendering
546 */
547 table.diff, td.diff-otitle, td.diff-ntitle {
548 background-color: white;
549 }
550 td.diff-addedline {
551 background: #cfc;
552 font-size: smaller;
553 }
554 td.diff-deletedline {
555 background: #ffa;
556 font-size: smaller;
557 }
558 td.diff-context {
559 background: #eee;
560 font-size: smaller;
561 }
562 .diffchange {
563 color: red;
564 font-weight: bold;
565 }
566
567 /*
568 ** keep the whitespace in front of the ^=, hides rule from konqueror
569 ** this is css3, the validator doesn't like it when validating as css2
570 */
571 #bodyContent a.external,
572 #bodyContent a[href ^="gopher://"] {
573 background: url(external.png) center right no-repeat;
574 padding-right: 13px;
575 }
576 #bodyContent a[href ^="https://"],
577 .link-https {
578 background: url(lock_icon.gif) center right no-repeat;
579 padding-right: 16px;
580 }
581 #bodyContent a[href ^="mailto:"],
582 .link-mailto {
583 background: url(mail_icon.gif) center right no-repeat;
584 padding-right: 18px;
585 }
586 #bodyContent a[href ^="news://"] {
587 background: url(news_icon.png) center right no-repeat;
588 padding-right: 18px;
589 }
590 #bodyContent a[href ^="ftp://"],
591 .link-ftp {
592 background: url(file_icon.gif) center right no-repeat;
593 padding-right: 18px;
594 }
595 #bodyContent a[href ^="irc://"],
596 .link-irc {
597 background: url(discussionitem_icon.gif) center right no-repeat;
598 padding-right: 18px;
599 }
600 #bodyContent a.external[href $=".ogg"], #bodyContent a.external[href $=".OGG"],
601 #bodyContent a.external[href $=".mid"], #bodyContent a.external[href $=".MID"],
602 #bodyContent a.external[href $=".midi"], #bodyContent a.external[href $=".MIDI"],
603 #bodyContent a.external[href $=".mp3"], #bodyContent a.external[href $=".MP3"],
604 #bodyContent a.external[href $=".wav"], #bodyContent a.external[href $=".WAV"],
605 #bodyContent a.external[href $=".wma"], #bodyContent a.external[href $=".WMA"],
606 .link-audio {
607 background: url("audio.png") center right no-repeat;
608 padding-right: 13px;
609 }
610 #bodyContent a.external[href $=".ogm"], #bodyContent a.external[href $=".OGM"],
611 #bodyContent a.external[href $=".avi"], #bodyContent a.external[href $=".AVI"],
612 #bodyContent a.external[href $=".mpeg"], #bodyContent a.external[href $=".MPEG"],
613 #bodyContent a.external[href $=".mpg"], #bodyContent a.external[href $=".MPG"],
614 .link-video {
615 background: url("video.png") center right no-repeat;
616 padding-right: 13px;
617 }
618 #bodyContent a.external[href $=".pdf"], #bodyContent a.external[href $=".PDF"],
619 #bodyContent a.external[href *=".pdf#"], #bodyContent a.external[href *=".PDF#"],
620 #bodyContent a.external[href *=".pdf?"], #bodyContent a.external[href *=".PDF?"],
621 .link-document {
622 background: url("document.png") center right no-repeat;
623 padding-right: 12px;
624 }
625
626 /* disable interwiki styling */
627 #bodyContent a.extiw,
628 #bodyContent a.extiw:active {
629 color: #36b;
630 background: none;
631 padding: 0;
632 }
633 #bodyContent a.external {
634 color: #36b;
635 }
636 /* this can be used in the content area to switch off
637 special external link styling */
638 #bodyContent .plainlinks a {
639 background: none !important;
640 padding: 0 !important;
641 }
642 /*
643 ** Structural Elements
644 */
645
646 /*
647 ** general portlet styles (elements in the quickbar)
648 */
649 .portlet {
650 border: none;
651 margin: 0 0 .5em;
652 padding: 0;
653 float: none;
654 width: 11.6em;
655 overflow: hidden;
656 }
657 .portlet h4 {
658 font-size: 95%;
659 font-weight: normal;
660 white-space: nowrap;
661 }
662 .portlet h5 {
663 background: transparent;
664 padding: 0 1em 0 .5em;
665 display: inline;
666 height: 1em;
667 text-transform: lowercase;
668 font-size: 91%;
669 font-weight: normal;
670 white-space: nowrap;
671 }
672 .portlet h6 {
673 background: #ffae2e;
674 border: 1px solid #2f6fab;
675 border-style: solid solid none solid;
676 padding: 0 1em 0 1em;
677 text-transform: lowercase;
678 display: block;
679 font-size: 1em;
680 height: 1.2em;
681 font-weight: normal;
682 white-space: nowrap;
683 }
684 .pBody {
685 font-size: 95%;
686 background-color: white;
687 color: black;
688 border-collapse: collapse;
689 border: 1px solid #aaa;
690 padding: 0 .8em .3em .5em;
691 }
692 .portlet h1,
693 .portlet h2,
694 .portlet h3,
695 .portlet h4 {
696 margin: 0;
697 padding: 0;
698 }
699 .portlet ul {
700 line-height: 1.5em;
701 list-style-type: square;
702 list-style-image: url(bullet.gif);
703 font-size: 95%;
704 }
705 .portlet li {
706 padding: 0;
707 margin: 0;
708 }
709
710 /*
711 ** Logo properties
712 */
713
714 @media handheld {
715 #p-logo { display: none }
716 }
717
718 /*
719 ** the navigation portlet
720 */
721
722 #p-navigation .pBody {
723 padding-right: 0;
724 }
725
726 #p-navigation li.active a, #p-navigation li.active a:hover {
727 text-decoration: none;
728 font-weight: bold;
729 }
730
731
732 /*
733 ** Search portlet
734 */
735 input.searchButton {
736 margin-top: 1px;
737 font-size: 95%;
738 }
739 #searchGoButton {
740 padding-left: .5em;
741 padding-right: .5em;
742 font-weight: bold;
743 }
744 #searchInput {
745 width: 10.9em;
746 margin: 0;
747 font-size: 95%;
748 }
749 #p-search .pBody {
750 padding: .5em .4em .4em .4em;
751 text-align: center;
752 }
753
754 /*
755 ** the personal toolbar
756 */
757 #p-personal ul {
758 text-transform: lowercase;
759 }
760 #p-personal li.active {
761 font-weight: bold;
762 }
763 /*
764 ** the page-related actions- page/talk, edit etc
765 */
766 #p-cactions .hiddenStructure {
767 display: none;
768 }
769 #p-cactions li a {
770 text-transform: lowercase;
771 }
772
773 /* TODO: #t-iscite is only used by the Cite extension, come up with some
774 * system which allows extensions to add to this file on the fly
775 */
776 #t-ispermalink, #t-iscite {
777 color: #999;
778 }
779 /*
780 ** footer
781 */
782 #footer {
783 background-color: white;
784 border-top: 1px solid #fabd23;
785 border-bottom: 1px solid #fabd23;
786 margin: .6em 0 1em 0;
787 padding: .4em 0 1.2em 0;
788 text-align: center;
789 font-size: 90%;
790 }
791 #footer li {
792 display: inline;
793 margin: 0 1.3em;
794 }
795 /* hide from incapable browsers */
796 head:first-child+body #footer li { white-space: nowrap; }
797 #f-poweredbyico, #f-copyrightico {
798 margin: 0 8px;
799 position: relative;
800 top: -2px; /* Bump it up just a tad */
801 }
802 #f-poweredbyico {
803 float: right;
804 height: 1%;
805 }
806 #f-copyrightico {
807 float: left;
808 height: 1%;
809 }
810
811 /* js pref toc */
812 #preftoc {
813 margin: 0;
814 padding: 0;
815 width: 100%;
816 clear: both;
817 }
818 #preftoc li {
819 background-color: #f0f0f0;
820 color: #000;
821 }
822 #preftoc li.selected {
823 font-weight: bold;
824 background-color: #f9f9f9;
825 border: 1px solid #aaa;
826 border-bottom: none;
827 cursor: default;
828 top: 1px;
829 padding-top: 2px;
830 margin-right: -3px;
831 }
832 #preftoc > li.selected {
833 top: 2px;
834 }
835 #preftoc a,
836 #preftoc a:active {
837 display: block;
838 color: #000;
839 padding: 0 .7em;
840 position: relative;
841 text-decoration: none;
842 }
843 #preftoc li.selected a {
844 cursor: default;
845 text-decoration: none;
846 }
847 #prefcontrol {
848 padding-top: 2em;
849 clear: both;
850 }
851 #preferences {
852 margin: 0;
853 border: 1px solid #aaa;
854 clear: both;
855 padding: 1.5em;
856 background-color: #F9F9F9;
857 }
858 .prefsection {
859 border: none;
860 padding: 0;
861 margin: 0;
862 }
863 .prefsection fieldset {
864 border: 1px solid #aaa;
865 float: left;
866 margin-right: 2em;
867 }
868 .prefsection legend {
869 font-weight: bold;
870 }
871 .prefsection table, .prefsection legend {
872 background-color: #F9F9F9;
873 }
874 div.prefsectiontip {
875 font-size: x-small;
876 padding: .2em 2em;
877 }
878 .btnSavePrefs {
879 font-weight: bold;
880 padding-left: .3em;
881 padding-right: .3em;
882 }
883
884 .preferences-login {
885 clear: both;
886 margin-bottom: 1.5em;
887 }
888
889 .prefcache {
890 font-size: 90%;
891 margin-top: 2em;
892 }
893
894 div#userloginForm form,
895 div#userlogin form#userlogin2 {
896 margin: 0 3em 1em 0;
897 border: 1px solid #aaa;
898 clear: both;
899 padding: 1.5em 2em;
900 background-color: #f9f9f9;
901 float: left;
902 }
903
904 div#userloginForm table,
905 div#userlogin form#userlogin2 table {
906 background-color: #f9f9f9;
907 }
908
909 div#userloginForm h2,
910 div#userlogin form#userlogin2 h2 {
911 padding-top: 0;
912 }
913
914 div#userlogin .captcha {
915 border: 1px solid #bbb;
916 padding: 1.5em 2em;
917 background-color: white;
918 }
919
920
921 #userloginprompt, #languagelinks {
922 font-size: 85%;
923 }
924
925 #login-sectiontip {
926 font-size: 85%;
927 line-height: 1.2;
928 padding-top: 2em;
929 }
930
931 #userlogin .loginText, #userlogin .loginPassword {
932 width: 12em;
933 }
934
935 #userloginlink a, #wpLoginattempt, #wpCreateaccount {
936 font-weight: bold;
937 }
938
939 /* more IE fixes */
940 /* float/negative margin brokenness */
941 * html #footer {margin-top: 0;}
942 * html #column-content {
943 display: inline;
944 margin-bottom: 0;
945 }
946 * html div.editsection { font-size: smaller; }
947 #pagehistory li.selected { position: relative; }
948
949 /* Mac IE 5.0 fix; floated content turns invisible */
950 * > html #column-content {
951 float: none;
952 }
953 * > html #column-one {
954 position: absolute;
955 left: 0;
956 top: 0;
957 }
958 * > html #footer {
959 margin-left: 13.2em;
960 }
961 .redirectText {
962 font-size: 150%;
963 margin: 5px;
964 }
965
966 .printfooter {
967 display: none;
968 }
969
970 .not-patrolled {
971 background-color: #ffa;
972 }
973 div.patrollink {
974 font-size: 75%;
975 text-align: right;
976 }
977 span.newpage, span.minor, span.searchmatch, span.bot {
978 font-weight: bold;
979 }
980 span.unpatrolled {
981 font-weight: bold;
982 color: red;
983 }
984
985 span.searchmatch {
986 color: red;
987 }
988 .sharedUploadNotice {
989 font-style: italic;
990 }
991
992 span.updatedmarker {
993 color: black;
994 background-color: #0f0;
995 }
996
997 table.gallery {
998 border: 1px solid #ccc;
999 margin: 2px;
1000 padding: 2px;
1001 background-color: white;
1002 }
1003
1004 table.gallery tr {
1005 vertical-align: top;
1006 }
1007
1008 table.gallery td {
1009 vertical-align: top;
1010 background-color: #f9f9f9;
1011 border: solid 2px white;
1012 }
1013
1014 /* Keep this temporarily so that cached pages will display right */
1015 table.gallery td.galleryheader {
1016 text-align: center;
1017 font-weight: bold;
1018 }
1019 table.gallery caption {
1020 font-weight: bold;
1021 }
1022
1023 div.gallerybox {
1024 margin: 2px;
1025 width: 150px;
1026 }
1027
1028 div.gallerybox div.thumb {
1029 text-align: center;
1030 border: 1px solid #ccc;
1031 margin: 2px;
1032 }
1033
1034 div.gallerytext {
1035 font-size: 94%;
1036 padding: 2px 4px;
1037 }
1038
1039 span.comment {
1040 font-style: italic;
1041 }
1042
1043 span.changedby {
1044 font-size: 95%;
1045 }
1046
1047 .previewnote {
1048 text-indent: 3em;
1049 color: #c00;
1050 border-bottom: 1px solid #aaa;
1051 padding-bottom: 1em;
1052 margin-bottom: 1em;
1053 }
1054
1055 .previewnote p {
1056 margin: 0;
1057 padding: 0;
1058 }
1059
1060 .editExternally {
1061 border: 1px solid gray;
1062 background-color: #ffffff;
1063 padding: 3px;
1064 margin-top: 0.5em;
1065 float: left;
1066 font-size: small;
1067 text-align: center;
1068 }
1069 .editExternallyHelp {
1070 font-style: italic;
1071 color: gray;
1072 }
1073
1074 li span.deleted, span.history-deleted {
1075 text-decoration: line-through;
1076 color: #888;
1077 font-style: italic;
1078 }
1079
1080 .toggle {
1081 margin-left: 2em;
1082 text-indent: -2em;
1083 }
1084
1085 /* Classes for EXIF data display */
1086 table.mw_metadata {
1087 font-size: 0.8em;
1088 margin-left: 0.5em;
1089 margin-bottom: 0.5em;
1090 width: 300px;
1091 }
1092
1093 table.mw_metadata caption {
1094 font-weight: bold;
1095 }
1096
1097 table.mw_metadata th {
1098 font-weight: normal;
1099 }
1100
1101 table.mw_metadata td {
1102 padding: 0.1em;
1103 }
1104
1105 table.mw_metadata {
1106 border: none;
1107 border-collapse: collapse;
1108 }
1109
1110 table.mw_metadata td, table.mw_metadata th {
1111 text-align: center;
1112 border: 1px solid #aaaaaa;
1113 padding-left: 0.1em;
1114 padding-right: 0.1em;
1115 }
1116
1117 table.mw_metadata th {
1118 background-color: #f9f9f9;
1119 }
1120
1121 table.mw_metadata td {
1122 background-color: #fcfcfc;
1123 }
1124
1125 table.collapsed tr.collapsable {
1126 display: none;
1127 }
1128
1129
1130 /* filetoc */
1131 ul#filetoc {
1132 text-align: center;
1133 border: 1px solid #aaaaaa;
1134 background-color: #f9f9f9;
1135 padding: 5px;
1136 font-size: 95%;
1137 margin-bottom: 0.5em;
1138 margin-left: 0;
1139 margin-right: 0;
1140 }
1141
1142 #filetoc li {
1143 display: inline;
1144 list-style-type: none;
1145 padding-right: 2em;
1146 }
1147
1148 input#wpSummary {
1149 width: 80%;
1150 }
1151
1152 /* @bug 1714 */
1153 input#wpSave, input#wpDiff {
1154 margin-right: 0.33em;
1155 }
1156
1157 #editform .editOptions {
1158 display: inline;
1159 }
1160
1161 #wpSave {
1162 font-weight: bold;
1163 }
1164
1165 /* Classes for article validation */
1166
1167 table.revisionform_default {
1168 border: 1px solid #000000;
1169 }
1170
1171 table.revisionform_focus {
1172 border: 1px solid #000000;
1173 background-color:#00BBFF;
1174 }
1175
1176 tr.revision_tr_default {
1177 background-color:#EEEEEE;
1178 }
1179
1180 tr.revision_tr_first {
1181 background-color:#DDDDDD;
1182 }
1183
1184 p.revision_saved {
1185 color: green;
1186 font-weight:bold;
1187 }
1188
1189 #mw_trackbacks {
1190 border: solid 1px #bbbbff;
1191 background-color: #eeeeff;
1192 padding: 0.2em;
1193 }
1194
1195
1196 /* Allmessages table */
1197
1198 #allmessagestable th {
1199 background-color: #b2b2ff;
1200 }
1201
1202 #allmessagestable tr.orig {
1203 background-color: #ffe2e2;
1204 }
1205
1206 #allmessagestable tr.new {
1207 background-color: #e2ffe2;
1208 }
1209
1210 #allmessagestable tr.def {
1211 background-color: #f0f0ff;
1212 }
1213
1214
1215 /* noarticletext */
1216 div.noarticletext {
1217 border: 1px solid #ccc;
1218 background: #fff;
1219 padding: .2em 1em;
1220 color: #000;
1221 }
1222
1223 div#searchTargetContainer {
1224 left: 10px;
1225 top: 10px;
1226 width: 90%;
1227 background: white;
1228 }
1229
1230 div#searchTarget {
1231 padding: 3px;
1232 margin: 5px;
1233 background: #F0F0F0;
1234 border: solid 1px blue;
1235 }
1236
1237 div#searchTarget ul li {
1238 list-style: none;
1239 }
1240
1241 div#searchTarget ul li:before {
1242 color: orange;
1243 content: "\00BB \0020";
1244 }
1245
1246 div.multipageimagenavbox {
1247 border: solid 1px silver;
1248 padding: 4px;
1249 margin: 1em;
1250 -moz-border-radius: 6px;
1251 background: #f0f0f0;
1252 }
1253
1254 div.multipageimagenavbox div.thumb {
1255 border: none;
1256 margin-left: 2em;
1257 margin-right: 2em;
1258 }
1259
1260 div.multipageimagenavbox hr {
1261 margin: 6px;
1262 }
1263
1264 table.multipageimage td {
1265 text-align: center;
1266 }
1267
1268 /** Special:Version */
1269
1270 table#sv-ext, table#sv-hooks {
1271 margin: 1em;
1272 padding:0em;
1273 }
1274
1275 #sv-ext td, #sv-hooks td,
1276 #sv-ext th, #sv-hooks th {
1277 border: 1px solid #A0A0A0;
1278 padding: 0 0.15em 0 0.15em;
1279 }
1280 #sv-ext th, #sv-hooks th {
1281 background-color: #F0F0F0;
1282 color: black;
1283 padding: 0 0.15em 0 0.15em;
1284 }
1285 tr.sv-space{
1286 height: 0.8em;
1287 border:none;
1288 }
1289 tr.sv-space td { display: none; }
1290
1291 /*
1292 Table pager (e.g. Special:Imagelist)
1293 - remove underlines from the navigation link
1294 - collapse borders
1295 - set the borders to outsets (similar to Special:Allmessages)
1296 - remove line wrapping for all td and th, set background color
1297 - restore line wrapping for the last two table cells (description and size)
1298 */
1299 .TablePager_nav a { text-decoration: none; }
1300 .TablePager { border-collapse: collapse; }
1301 .TablePager, .TablePager td, .TablePager th {
1302 border: 0.15em solid #777777;
1303 padding: 0 0.15em 0 0.15em;
1304 }
1305 .TablePager th { background-color: #eeeeff }
1306 .TablePager td { background-color: #ffffff }
1307 .TablePager tr:hover td { background-color: #eeeeff }
1308
1309 .imagelist td, .imagelist th { white-space: nowrap }
1310 .imagelist .TablePager_col_links { background-color: #eeeeff }
1311 .imagelist .TablePager_col_img_description { white-space: normal }
1312 .imagelist th.TablePager_sort { background-color: #ccccff }
1313
1314 .templatesUsed { margin-top: 1.5em; }
1315
1316 .mw-summary-preview {
1317 margin: 0.1em 0;
1318 }
1319 @media handheld {
1320 .nonessential {
1321 /* Kill big bulky stuff that will clog up the screen */
1322 display: none;
1323 }
1324 }
1325
1326 /**
1327 * Here is some stuff that's ACTUALLY COMMON TO ALL SKINS.
1328 * When the day comes, it can be moved to a *real* common.css.
1329 */
1330 .mw-plusminus-null { color: #aaa; }
1331 .texvc { direction: ltr; unicode-bidi: embed; }
1332 /* Stop floats from intruding into edit area in previews */
1333 #toolbar, #wpTextbox1 { clear: both; }