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