Follow-up r96261: remove the !important again, and then do the script defaults differ...
[lhc/web/wiklou.git] / skins / common / shared.css
1 /**
2 * CSS in this file is used by *all* skins (that have any CSS at all). Be
3 * careful what you put in here, since what looks good in one skin may not in
4 * another, but don't ignore the poor pre-Monobook users either.
5 */
6
7 /* GENERAL CLASSES FOR DIRECTIONALITY SUPPORT */
8
9 /**
10 * These classes should be used for text depending on the content direction.
11 * Content stuff like editsection, ul/ol and TOC depend on this.
12 */
13 .mw-content-ltr {
14 /* @noflip */
15 direction: ltr;
16 }
17 .mw-content-rtl {
18 /* @noflip */
19 direction: rtl;
20 }
21
22 /* Most input fields should be in site direction */
23 .sitedir-ltr textarea,
24 .sitedir-ltr input {
25 /* @noflip */
26 direction: ltr;
27 }
28 .sitedir-rtl textarea,
29 .sitedir-rtl input {
30 /* @noflip */
31 direction: rtl;
32 }
33
34 /* Input types that should follow user direction, like buttons */
35 /* TODO: What about buttons in wikipage content ? */
36 input[type="submit"],
37 input[type="button"],
38 input[type="reset"],
39 input[type="file"] {
40 direction: ltr;
41 }
42
43 /* Override default values */
44 textarea[dir="ltr"],
45 input[dir="ltr"] {
46 /* @noflip */
47 direction: ltr;
48 }
49 textarea[dir="rtl"],
50 input[dir="rtl"] {
51 /* @noflip */
52 direction: rtl;
53 }
54
55 /* Default style for semantic tags */
56 abbr,
57 acronym,
58 .explain {
59 border-bottom: 1px dotted black;
60 cursor: help;
61 }
62
63 /* Colored watchlist and recent changes numbers */
64 .mw-plusminus-pos {
65 color: #006400; /* dark green */
66 }
67 .mw-plusminus-neg {
68 color: #8b0000; /* dark red */
69 }
70 .mw-plusminus-null {
71 color: #aaa; /* gray */
72 }
73
74 /**
75 * Links to redirects appear italicized on [[Special:AllPages]], [[Special:PrefixIndex]],
76 * [[Special:Watchlist/edit]] and in category listings.
77 */
78 .allpagesredirect,
79 .redirect-in-category,
80 .watchlistredir {
81 font-style: italic;
82 }
83
84 /* Comment and username portions of RC entries */
85 span.comment {
86 font-style: italic;
87 }
88
89 span.changedby {
90 font-size: 95%;
91 }
92
93 /* Math */
94 .texvc {
95 direction: ltr;
96 unicode-bidi: embed;
97 }
98 img.tex {
99 vertical-align: middle;
100 }
101 span.texhtml {
102 font-family: serif;
103 }
104
105 /**
106 * Add a bit of margin space between the preview and the toolbar.
107 * This replaces the ugly <p><br /></p> we used to insert into the page source
108 */
109 #wikiPreview.ontop {
110 margin-bottom: 1em;
111 }
112
113 /* Stop floats from intruding into edit area in previews */
114 #editform,
115 #toolbar,
116 #wpTextbox1 {
117 clear: both;
118 }
119 #toolbar img {
120 cursor: pointer;
121 }
122 div#mw-js-message {
123 margin: 1em 5%;
124 padding: 0.5em 2.5%;
125 border: solid 1px #ddd;
126 background-color: #fcfcfc;
127 }
128
129 /* Edit section links */
130 .editsection {
131 float: right;
132 margin-left: 5px;
133 }
134 /* Correct directionality when page dir is different from site/user dir */
135 .mw-content-ltr .editsection,
136 .mw-content-rtl .mw-content-ltr .editsection {
137 /* @noflip */
138 float: right;
139 }
140 .mw-content-rtl .editsection,
141 .mw-content-ltr .mw-content-rtl .editsection {
142 /* @noflip */
143 float: left;
144 }
145
146 /**
147 * File description page
148 */
149
150 div.mw-filepage-resolutioninfo {
151 font-size: smaller;
152 }
153
154 /**
155 * File histories
156 */
157 h2#filehistory {
158 clear: both;
159 }
160
161 table.filehistory th,
162 table.filehistory td {
163 vertical-align: top;
164 }
165 table.filehistory th {
166 text-align: left;
167 }
168 table.filehistory td.mw-imagepage-filesize,
169 table.filehistory th.mw-imagepage-filesize {
170 white-space: nowrap;
171 }
172
173 table.filehistory td.filehistory-selected {
174 font-weight: bold;
175 }
176
177 /**
178 * Add a checkered background image on hover for file
179 * description pages. (bug 26470)
180 */
181 .filehistory a img,
182 #file img:hover {
183 /* @embed */
184 background: white url(images/Checker-16x16.png) repeat;
185 }
186
187 /**
188 * rev_deleted stuff
189 */
190 li span.deleted,
191 span.history-deleted {
192 text-decoration: line-through;
193 color: #888;
194 font-style: italic;
195 }
196
197 /**
198 * Patrol stuff
199 */
200 .not-patrolled {
201 background-color: #ffa;
202 }
203
204 .unpatrolled {
205 font-weight: bold;
206 color: red;
207 }
208
209 div.patrollink {
210 font-size: 75%;
211 text-align: right;
212 }
213
214 /**
215 * Forms
216 */
217 td.mw-label {
218 text-align: right;
219 }
220 td.mw-input {
221 text-align: left;
222 }
223 td.mw-submit {
224 text-align: left;
225 }
226
227 td.mw-label {
228 vertical-align: top;
229 }
230 .prefsection td.mw-label {
231 width: 20%;
232 }
233 .prefsection table {
234 width: 100%;
235 }
236 td.mw-submit {
237 white-space: nowrap;
238 }
239
240 table.mw-htmlform-nolabel td.mw-label {
241 width: 0 !important;
242 }
243
244 tr.mw-htmlform-vertical-label td.mw-label {
245 text-align: left !important;
246 }
247
248 .mw-htmlform-invalid-input td.mw-input input {
249 border-color: red;
250 }
251 .mw-htmlform-radio-flatlist div.mw-htmlform-radio-item,
252 .mw-htmlform-multiselect-flatlist div.mw-htmlform-multiselect-item {
253 display: inline;
254 margin-right: 1em;
255 white-space: nowrap;
256 }
257
258 input#wpSummary {
259 width: 80%;
260 }
261
262 /**
263 * Image captions
264 */
265 .thumbcaption {
266 text-align: left;
267 }
268 .magnify {
269 float: right;
270 }
271
272 /**
273 * Categories
274 */
275 .catlinks ul {
276 display: inline;
277 margin: 0;
278 padding: 0;
279 list-style: none;
280 list-style-type: none;
281 list-style-image: none;
282 vertical-align: middle !ie;
283 }
284
285 .catlinks li {
286 display: inline-block;
287 line-height: 1em;
288 border-left: 1px solid #AAA;
289 margin: 0.25em 0;
290 padding: 0 0.5em;
291 zoom: 1;
292 display: inline !ie;
293 }
294
295 .catlinks li:first-child {
296 padding-left: 0.25em;
297 border-left: none;
298 }
299 /**
300 * Hidden categories
301 */
302 .mw-hidden-cats-hidden {
303 display: none;
304 }
305 .catlinks-allhidden {
306 display: none;
307 }
308
309 /* Convenience links to edit block, delete and protect reasons */
310 p.mw-ipb-conveniencelinks,
311 p.mw-protect-editreasons,
312 p.mw-filedelete-editreasons,
313 p.mw-delete-editreasons,
314 p.mw-revdel-editreasons {
315 font-size: 90%;
316 text-align: right;
317 }
318
319 /**
320 * OpenSearch ajax suggestions
321 */
322 .os-suggest {
323 overflow: auto;
324 overflow-x: hidden;
325 position: absolute;
326 top: 0;
327 left: 0;
328 width: 0;
329 background-color: white;
330 border-style: solid;
331 border-color: #AAAAAA;
332 border-width: 1px;
333 z-index:99;
334 font-size:95%;
335 }
336
337 table.os-suggest-results {
338 font-size: 95%;
339 cursor: pointer;
340 border: 0;
341 border-collapse: collapse;
342 width: 100%;
343 }
344
345 .os-suggest-result,
346 .os-suggest-result-hl {
347 white-space: nowrap;
348 background-color: white;
349 color: black;
350 padding: 2px;
351 }
352 .os-suggest-result-hl,
353 .os-suggest-result-hl-webkit {
354 background-color: #4C59A6;
355 color: white;
356 }
357
358 .os-suggest-toggle {
359 position: relative;
360 left: 1ex;
361 font-size: 65%;
362 }
363 .os-suggest-toggle-def {
364 position: absolute;
365 top: 0;
366 left: 0;
367 font-size: 65%;
368 visibility: hidden;
369 }
370
371 /* Page history styling */
372
373 /* The auto-generated edit comments */
374 .autocomment {
375 color: gray;
376 }
377 #pagehistory .history-user {
378 margin-left: 0.4em;
379 margin-right: 0.2em;
380 }
381 #pagehistory span.minor {
382 font-weight: bold;
383 }
384 #pagehistory li {
385 border: 1px solid white;
386 }
387 #pagehistory li.selected {
388 background-color: #f9f9f9;
389 border: 1px dashed #aaa;
390 }
391
392 .mw-history-revisiondelete-button, #mw-fileduplicatesearch-icon {
393 float: right;
394 }
395
396 /** Generic minor/bot/newpage styling (recent changes) */
397 .newpage,
398 .minoredit,
399 .botedit {
400 font-weight: bold;
401 }
402
403 #shared-image-dup,
404 #shared-image-conflict {
405 font-style: italic;
406 }
407
408 /**
409 * Recreating deleted page warning
410 * Reupload file warning
411 * Page protection warning
412 * incl. log entries for these warnings
413 */
414 div.mw-warning-with-logexcerpt {
415 padding: 3px;
416 margin-bottom: 3px;
417 border: 2px solid #2F6FAB;
418 clear: both;
419 }
420 div.mw-warning-with-logexcerpt ul li {
421 font-size: 90%;
422 }
423
424 /* (show/hide) revision deletion links */
425 span.mw-revdelundel-link,
426 strong.mw-revdelundel-link {
427 font-size: 90%;
428 }
429 span.mw-revdelundel-hidden,
430 input.mw-revdelundel-hidden {
431 visibility: hidden;
432 }
433
434 td.mw-revdel-checkbox,
435 th.mw-revdel-checkbox {
436 padding-right: 10px;
437 text-align: center;
438 }
439
440 /* feed links */
441 a.feedlink {
442 /* @embed */
443 background: url(images/feed-icon.png) center left no-repeat;
444 padding-left: 16px;
445 }
446
447 /* Plainlinks - this can be used to switch
448 * off special external link styling */
449 .plainlinks a {
450 background: none !important;
451 padding: 0 !important;
452 }
453 /* External URLs should always be treated as LTR (bug 4330) */
454 /* @noflip */ .rtl a.external.free,
455 .rtl a.external.autonumber {
456 direction: ltr;
457 unicode-bidi: embed;
458 }
459
460 /**
461 * wikitable class for skinning normal tables
462 * keep in sync with commonPrint.css
463 */
464 table.wikitable {
465 margin: 1em 1em 1em 0;
466 background-color: #f9f9f9;
467 border: 1px #aaa solid;
468 border-collapse: collapse;
469 color: black;
470 }
471 .wikitable th,
472 .wikitable td {
473 border: 1px #aaa solid;
474 padding: 0.2em;
475 }
476 .wikitable th {
477 background-color: #f2f2f2;
478 text-align: center;
479 }
480 .wikitable caption {
481 font-weight: bold;
482 }
483
484 /* hide initially collapsed collapsable tables */
485 table.collapsed tr.collapsable {
486 display: none;
487 }
488
489 /* success and error messages */
490 .success {
491 color: green;
492 font-size: larger;
493 }
494 .warning {
495 color: #FFA500; /* orange */
496 font-size: larger;
497 }
498 .error {
499 color: red;
500 font-size: larger;
501 }
502 .errorbox,
503 .warningbox,
504 .successbox {
505 font-size: larger;
506 border: 2px solid;
507 padding: .5em 1em;
508 float: left;
509 margin-bottom: 2em;
510 color: #000;
511 }
512 .errorbox {
513 border-color: red;
514 background-color: #fff2f2;
515 }
516 .warningbox {
517 border-color: #FF8C00; /* darkorange */
518 background-color: #FFFFC0;
519 }
520 .successbox {
521 border-color: green;
522 background-color: #dfd;
523 }
524 .errorbox h2,
525 .warningbox h2,
526 .successbox h2 {
527 font-size: 1em;
528 font-weight: bold;
529 display: inline;
530 margin: 0 .5em 0 0;
531 border: none;
532 }
533
534 /* general info/warning box for SP */
535 .mw-infobox {
536 border: 2px solid #ff7f00;
537 margin: 0.5em;
538 clear: left;
539 overflow: hidden;
540 }
541
542 .mw-infobox-left {
543 margin: 7px;
544 float: left;
545 width: 35px;
546 }
547
548 .mw-infobox-right {
549 margin: 0.5em 0.5em 0.5em 49px;
550 }
551
552 /* Note on preview page */
553 .previewnote {
554 color: #c00;
555 margin-bottom: 1em;
556 }
557
558 .previewnote p {
559 text-indent: 3em;
560 margin: 0.8em 0;
561 }
562
563 .visualClear {
564 clear: both;
565 }
566
567 #mw_trackbacks {
568 border: solid 1px #bbbbff;
569 background-color: #eeeeff;
570 padding: 0.2em;
571 }
572
573 /**
574 * Data table style
575 *
576 * Transparent table with suddle borders
577 * and blue row-highlighting.
578 */
579 .mw-datatable {
580 border-collapse: collapse;
581 }
582 .mw-datatable,
583 .mw-datatable td,
584 .mw-datatable th {
585 border: 1px solid #aaaaaa;
586 padding: 0 0.15em 0 0.15em;
587 }
588 .mw-datatable th {
589 background-color: #ddddff;
590 }
591 .mw-datatable td {
592 background-color: #ffffff;
593 }
594 .mw-datatable tr:hover td {
595 background-color: #eeeeff;
596 }
597
598
599 /**
600 * TablePager tables generated by the TablePager PHP class
601 * in MediaWiki (e.g. Special:ListFiles).
602 */
603 .TablePager {
604 min-width: 80%;
605 }
606 .TablePager_nav {
607 margin: 0 auto;
608 }
609 .TablePager_nav td {
610 padding: 3px;
611 text-align: center;
612 }
613 .TablePager_nav a {
614 text-decoration: none;
615 }
616
617 .imagelist td,
618 .imagelist th {
619 white-space: nowrap;
620 }
621 .imagelist .TablePager_col_links {
622 background-color: #eeeeff;
623 }
624 .imagelist .TablePager_col_img_description {
625 white-space: normal;
626 }
627 .imagelist th.TablePager_sort {
628 background-color: #ccccff;
629 }
630
631 /* filetoc */
632 ul#filetoc {
633 text-align: center;
634 border: 1px solid #aaaaaa;
635 background-color: #f9f9f9;
636 padding: 5px;
637 font-size: 95%;
638 margin-bottom: 0.5em;
639 margin-left: 0;
640 margin-right: 0;
641 }
642
643 #filetoc li {
644 display: inline;
645 list-style-type: none;
646 padding-right: 2em;
647 }
648
649 /* Classes for EXIF data display */
650 table.mw_metadata {
651 font-size: 0.8em;
652 margin-left: 0.5em;
653 margin-bottom: 0.5em;
654 width: 400px;
655 }
656
657 table.mw_metadata caption {
658 font-weight: bold;
659 }
660
661 table.mw_metadata th {
662 font-weight: normal;
663 }
664
665 table.mw_metadata td {
666 padding: 0.1em;
667 }
668
669 table.mw_metadata {
670 border: none;
671 border-collapse: collapse;
672 }
673
674 table.mw_metadata td,
675 table.mw_metadata th {
676 text-align: center;
677 border: 1px solid #aaaaaa;
678 padding-left: 5px;
679 padding-right: 5px;
680 }
681
682 table.mw_metadata th {
683 background-color: #f9f9f9;
684 }
685
686 table.mw_metadata td {
687 background-color: #fcfcfc;
688 }
689
690 table.mw_metadata ul.metadata-langlist {
691 list-style-type: none;
692 list-style-image: none;
693 padding-right: 5px;
694 padding-left: 5px;
695 margin: 0;
696 }
697
698 /* Correct directionality when page dir is different from site/user dir */
699 .mw-content-ltr ul,
700 .mw-content-rtl .mw-content-ltr ul {
701 /* @noflip */
702 margin: 0.3em 0 0 1.5em;
703 padding: 0;
704 }
705 .mw-content-rtl ul,
706 .mw-content-ltr .mw-content-rtl ul {
707 /* @noflip */
708 margin: 0.3em 1.5em 0 0;
709 padding: 0;
710 }
711 .mw-content-ltr ol,
712 .mw-content-rtl .mw-content-ltr ol {
713 /* @noflip */
714 margin: 0.3em 0 0 3.2em;
715 padding: 0;
716 }
717 .mw-content-rtl ol,
718 .mw-content-ltr .mw-content-rtl ol {
719 /* @noflip */
720 margin: 0.3em 3.2em 0 0;
721 padding: 0;
722 }
723
724 /* Galleries */
725 /* These display attributes look nonsensical, but are needed to support IE and FF2 */
726 /* Don't forget to update commonPrint.css */
727 li.gallerybox {
728 vertical-align: top;
729 border: solid 2px white;
730 display: -moz-inline-box;
731 display: inline-block;
732 }
733
734 ul.gallery {
735 margin: 2px;
736 padding: 2px;
737 display: inline-block;
738 }
739
740 ul.gallery,
741 li.gallerybox {
742 zoom: 1;
743 display: inline !ie;
744 }
745
746 li.gallerycaption {
747 font-weight: bold;
748 text-align: center;
749 display: block;
750 word-wrap: break-word;
751 }
752
753 li.gallerybox div.thumb {
754 text-align: center;
755 border: 1px solid #ccc;
756 background-color: #f9f9f9;
757 margin: 2px;
758 }
759
760 li.gallerybox div.thumb img {
761 display: block;
762 margin: 0 auto;
763 }
764
765 div.gallerytext {
766 overflow: hidden;
767 font-size: 94%;
768 padding: 2px 4px;
769 word-wrap: break-word;
770 }
771
772 .mw-ajax-loader {
773 /* @embed */
774 background-image: url(images/ajax-loader.gif);
775 background-position: center center;
776 background-repeat: no-repeat;
777 padding: 16px;
778 position: relative;
779 top: -16px;
780 }
781
782 .mw-small-spinner {
783 padding: 10px !important;
784 margin-right: 0.6em;
785 /* @embed */
786 background-image: url(images/spinner.gif);
787 background-position: center center;
788 background-repeat: no-repeat;
789 }
790
791 /* Language specific height correction for titles. Ref Bug 29405 and Bug 30809 */
792 /* Languages like hi or ml require slightly more vertical space to show diacritics properly */
793 h1:lang(hi),
794 h1:lang(ml) {
795 line-height: 1.5em;
796 }
797 h2:lang(hi),
798 h2:lang(ml),
799 h3:lang(hi),
800 h3:lang(ml),
801 h4:lang(hi),
802 h4:lang(ml),
803 h5:lang(hi),
804 h5:lang(ml),
805 h6:lang(hi),
806 h6:lang(ml) {
807 line-height: 1.2em;
808 }
809
810 /* Localised ordered list numbering for some languages */
811 ol:lang(bcc) li,
812 ol:lang(bqi) li,
813 ol:lang(fa) li,
814 ol:lang(glk) li,
815 ol:lang(kk-arab) li,
816 ol:lang(mzn) li {
817 list-style-type: -moz-persian;
818 list-style-type: persian;
819 }
820
821 ol:lang(ckb) li {
822 list-style-type: -moz-arabic-indic;
823 list-style-type: arabic-indic;
824 }
825
826 ol:lang(as) li,
827 ol:lang(bn) li {
828 list-style-type: -moz-bengali;
829 list-style-type: bengali;
830 }
831
832 ol:lang(or) li {
833 list-style-type: -moz-oriya;
834 list-style-type: oriya;
835 }
836
837 #toc ul, .toc ul {
838 margin: .3em 0;
839 }
840
841 /* Correct directionality when page dir is different from site/user dir */
842 /* @noflip */ .mw-content-ltr .toc ul,
843 .mw-content-ltr #toc ul,
844 .mw-content-rtl .mw-content-ltr .toc ul,
845 .mw-content-rtl .mw-content-ltr #toc ul {
846 text-align: left;
847 }
848 /* @noflip */ .mw-content-rtl .toc ul,
849 .mw-content-rtl #toc ul,
850 .mw-content-ltr .mw-content-rtl .toc ul,
851 .mw-content-ltr .mw-content-rtl #toc ul {
852 text-align: right;
853 }
854 /* @noflip */ .mw-content-ltr .toc ul ul,
855 .mw-content-ltr #toc ul ul,
856 .mw-content-rtl .mw-content-ltr .toc ul ul,
857 .mw-content-rtl .mw-content-ltr #toc ul ul {
858 margin: 0 0 0 2em;
859 }
860 /* @noflip */ .mw-content-rtl .toc ul ul,
861 .mw-content-rtl #toc ul ul,
862 .mw-content-ltr .mw-content-rtl .toc ul ul,
863 .mw-content-ltr .mw-content-rtl #toc ul ul {
864 margin: 0 2em 0 0;
865 }
866
867 #toc #toctitle,
868 .toc #toctitle,
869 #toc .toctitle,
870 .toc .toctitle {
871 direction: ltr;
872 }
873
874 /* tooltip styles */
875 .mw-help-field-hint {
876 display: none;
877 margin-left: 2px;
878 margin-bottom: -8px;
879 padding: 0 0 0 15px;
880 /* @embed */
881 background-image: url('images/help-question.gif');
882 background-position: left center;
883 background-repeat: no-repeat;
884 cursor: pointer;
885 font-size: .8em;
886 text-decoration: underline;
887 color: #0645ad;
888 }
889 .mw-help-field-hint:hover {
890 /* @embed */
891 background-image: url('images/help-question-hover.gif');
892 }
893 .mw-help-field-data {
894 display: block;
895 background-color: #d6f3ff;
896 padding:5px 8px 4px 8px;
897 border: 1px solid #5dc9f4;
898 margin-left: 20px;
899 }
900 .tipsy {
901 padding: 5px 5px 10px;
902 font-size: 12px;
903 position: absolute;
904 z-index: 100000;
905 overflow: visible;
906 }
907 .tipsy-inner {
908 padding: 5px 8px 4px 8px;
909 background-color: #d6f3ff;
910 color: black;
911 border: 1px solid #5dc9f4;
912 max-width: 300px;
913 text-align: left;
914 }
915 .tipsy-arrow {
916 position: absolute;
917 /* @embed */
918 background: url(images/tipsy-arrow.gif) no-repeat top left;
919 width: 13px;
920 height: 13px;
921 }
922 .tipsy-se .tipsy-arrow {
923 bottom: -2px;
924 right: 10px;
925 background-position: 0% 100%;
926 }
927
928 /* LTR content in RTL layout */
929 .ltr {
930 /* @noflip */
931 direction: ltr;
932 unicode-bidi: embed;
933 }
934
935 #mw-clearyourcache,
936 #mw-sitecsspreview,
937 #mw-sitejspreview,
938 #mw-usercsspreview,
939 #mw-userjspreview {
940 direction: ltr;
941 unicode-bidi: embed;
942 }
943
944 /* Correct user & content directionality when viewing a diff */
945 .diff-currentversion-title,
946 .diff {
947 direction: ltr;
948 unicode-bidi: embed;
949 }
950 /* @noflip */ .diff-contentalign-right td {
951 direction: rtl;
952 unicode-bidi: embed;
953 }
954 /* @noflip */ .diff-contentalign-left td {
955 direction: ltr;
956 unicode-bidi: embed;
957 }
958 .diff-otitle,
959 .diff-ntitle,
960 .diff-lineno {
961 direction: ltr !important;
962 unicode-bidi: embed;
963 }
964
965 #mw-revision-info,
966 #mw-revision-nav {
967 direction: ltr;
968 }
969
970 /* Images */
971
972 /* @noflip */ div.tright,
973 div.floatright,
974 table.floatright {
975 clear: right;
976 float: right;
977 }
978 /* @noflip */ div.tleft,
979 div.floatleft,
980 table.floatleft {
981 float: left;
982 clear: left;
983 }
984 div.floatright,
985 table.floatright,
986 div.floatleft,
987 table.floatleft {
988 position: relative;
989 }
990
991 /* bug 12205 */
992 #mw-credits a {
993 unicode-bidi: embed;
994 }
995
996 /* Accessibility */
997 .mw-jump {
998 overflow: hidden;
999 height: 0;
1000 zoom: 1; /* http://webaim.org/techniques/skipnav/#iequirk */
1001 }
1002