Improve the accessibility of our jump-to functionality
[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 .minor,
419 .bot {
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 /* wikitable class for skinning normal tables
481 * keep on sync with commonPrint.css
482 */
483 table.wikitable {
484 margin: 1em 1em 1em 0;
485 background: #f9f9f9;
486 border: 1px #aaa solid;
487 border-collapse: collapse;
488 color: black;
489 }
490 .wikitable th,
491 .wikitable td {
492 border: 1px #aaa solid;
493 padding: 0.2em;
494 }
495 .wikitable th {
496 background: #f2f2f2;
497 text-align: center;
498 }
499 .wikitable caption {
500 font-weight: bold;
501 }
502
503 /* hide initially collapsed collapsable tables */
504 table.collapsed tr.collapsable {
505 display: none;
506 }
507
508 /* success and error messages */
509 .success {
510 color: green;
511 font-size: larger;
512 }
513 .warning {
514 color: #FFA500; /* orange */
515 font-size: larger;
516 }
517 .error {
518 color: red;
519 font-size: larger;
520 }
521 .errorbox,
522 .warningbox,
523 .successbox {
524 font-size: larger;
525 border: 2px solid;
526 padding: .5em 1em;
527 float: left;
528 margin-bottom: 2em;
529 color: #000;
530 }
531 .errorbox {
532 border-color: red;
533 background-color: #fff2f2;
534 }
535 .warningbox {
536 border-color: #FF8C00; /* darkorange */
537 background-color: #FFFFC0;
538 }
539 .successbox {
540 border-color: green;
541 background-color: #dfd;
542 }
543 .errorbox h2,
544 .warningbox h2,
545 .successbox h2 {
546 font-size: 1em;
547 font-weight: bold;
548 display: inline;
549 margin: 0 .5em 0 0;
550 border: none;
551 }
552
553 /* general info/warning box for SP */
554 .mw-infobox {
555 border: 2px solid #ff7f00;
556 margin: 0.5em;
557 clear: left;
558 overflow: hidden;
559 }
560
561 .mw-infobox-left {
562 margin: 7px;
563 float: left;
564 width: 35px;
565 }
566
567 .mw-infobox-right {
568 margin: 0.5em 0.5em 0.5em 49px;
569 }
570
571 /* Note on preview page */
572 .previewnote {
573 color: #c00;
574 margin-bottom: 1em;
575 }
576
577 .previewnote p {
578 text-indent: 3em;
579 margin: 0.8em 0;
580 }
581
582 .visualClear {
583 clear: both;
584 }
585
586 #mw_trackbacks {
587 border: solid 1px #bbbbff;
588 background-color: #eeeeff;
589 padding: 0.2em;
590 }
591
592 /**
593 * Data table style
594 *
595 * Transparent table with suddle borders
596 * and blue row-highlighting.
597 */
598 .mw-datatable {
599 border-collapse: collapse;
600 }
601 .mw-datatable,
602 .mw-datatable td,
603 .mw-datatable th {
604 border: 1px solid #aaaaaa;
605 padding: 0 0.15em 0 0.15em;
606 }
607 .mw-datatable th {
608 background-color: #ddddff;
609 }
610 .mw-datatable td {
611 background-color: #ffffff;
612 }
613 .mw-datatable tr:hover td {
614 background-color: #eeeeff;
615 }
616
617
618 /**
619 * TablePager tables generated by the TablePager PHP class
620 * in MediaWiki (e.g. Special:ListFiles).
621 */
622 .TablePager {
623 min-width: 80%;
624 }
625 .TablePager_nav {
626 margin: 0 auto;
627 }
628 .TablePager_nav td {
629 padding: 3px;
630 text-align: center;
631 }
632 .TablePager_nav a {
633 text-decoration: none;
634 }
635
636 .imagelist td,
637 .imagelist th {
638 white-space: nowrap;
639 }
640 .imagelist .TablePager_col_links {
641 background-color: #eeeeff;
642 }
643 .imagelist .TablePager_col_img_description {
644 white-space: normal;
645 }
646 .imagelist th.TablePager_sort {
647 background-color: #ccccff;
648 }
649
650 /* filetoc */
651 ul#filetoc {
652 text-align: center;
653 border: 1px solid #aaaaaa;
654 background-color: #f9f9f9;
655 padding: 5px;
656 font-size: 95%;
657 margin-bottom: 0.5em;
658 margin-left: 0;
659 margin-right: 0;
660 }
661
662 #filetoc li {
663 display: inline;
664 list-style-type: none;
665 padding-right: 2em;
666 }
667
668 /* Classes for EXIF data display */
669 table.mw_metadata {
670 font-size: 0.8em;
671 margin-left: 0.5em;
672 margin-bottom: 0.5em;
673 width: 400px;
674 }
675
676 table.mw_metadata caption {
677 font-weight: bold;
678 }
679
680 table.mw_metadata th {
681 font-weight: normal;
682 }
683
684 table.mw_metadata td {
685 padding: 0.1em;
686 }
687
688 table.mw_metadata {
689 border: none;
690 border-collapse: collapse;
691 }
692
693 table.mw_metadata td,
694 table.mw_metadata th {
695 text-align: center;
696 border: 1px solid #aaaaaa;
697 padding-left: 5px;
698 padding-right: 5px;
699 }
700
701 table.mw_metadata th {
702 background-color: #f9f9f9;
703 }
704
705 table.mw_metadata td {
706 background-color: #fcfcfc;
707 }
708
709 table.mw_metadata ul.metadata-langlist {
710 list-style-type: none;
711 list-style-image: none;
712 padding-right: 5px;
713 padding-left: 5px;
714 margin: 0;
715 }
716
717 /* Correct directionality when page dir is different from site/user dir */
718 .mw-content-ltr ul,
719 .mw-content-rtl .mw-content-ltr ul {
720 /* @noflip */
721 margin: 0.3em 0 0 1.5em;
722 padding: 0;
723 }
724 .mw-content-rtl ul,
725 .mw-content-ltr .mw-content-rtl ul {
726 /* @noflip */
727 margin: 0.3em 1.5em 0 0;
728 padding: 0;
729 }
730 .mw-content-ltr ol,
731 .mw-content-rtl .mw-content-ltr ol {
732 /* @noflip */
733 margin: 0.3em 0 0 3.2em;
734 padding: 0;
735 }
736 .mw-content-rtl ol,
737 .mw-content-ltr .mw-content-rtl ol {
738 /* @noflip */
739 margin: 0.3em 3.2em 0 0;
740 padding: 0;
741 }
742
743 /* Galleries */
744 /* These display attributes look nonsensical, but are needed to support IE and FF2 */
745 /* Don't forget to update commonPrint.css */
746 li.gallerybox {
747 vertical-align: top;
748 border: solid 2px white;
749 display: -moz-inline-box;
750 display: inline-block;
751 }
752
753 ul.gallery {
754 margin: 2px;
755 padding: 2px;
756 display: inline-block;
757 }
758
759 ul.gallery,
760 li.gallerybox {
761 zoom: 1;
762 display: inline !ie;
763 }
764
765 li.gallerycaption {
766 font-weight: bold;
767 text-align: center;
768 display: block;
769 word-wrap: break-word;
770 }
771
772 li.gallerybox div.thumb {
773 text-align: center;
774 border: 1px solid #ccc;
775 background-color: #f9f9f9;
776 margin: 2px;
777 }
778
779 li.gallerybox div.thumb img {
780 display: block;
781 margin: 0 auto;
782 }
783
784 div.gallerytext {
785 overflow: hidden;
786 font-size: 94%;
787 padding: 2px 4px;
788 word-wrap: break-word;
789 }
790
791 .mw-ajax-loader {
792 /* @embed */
793 background-image: url(images/ajax-loader.gif);
794 background-position: center center;
795 background-repeat: no-repeat;
796 padding: 16px;
797 position: relative;
798 top: -16px;
799 }
800
801 .mw-small-spinner {
802 padding: 10px !important;
803 margin-right: 0.6em;
804 /* @embed */
805 background-image: url(images/spinner.gif);
806 background-position: center center;
807 background-repeat: no-repeat;
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: 0px 0px 0px 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 /* Table Sorting */
928 th.headerSort {
929 background-image: url(images/sort_both.gif);
930 cursor: pointer;
931 background-repeat: no-repeat;
932 background-position: center right;
933 padding-right: 21px;
934 }
935 th.headerSortUp {
936 background-image: url(images/sort_up.gif);
937 }
938 th.headerSortDown {
939 background-image: url(images/sort_down.gif);
940 }
941
942 /* LTR content in RTL layout */
943 .ltr {
944 /* @noflip */
945 direction: ltr;
946 unicode-bidi: embed;
947 }
948
949 #mw-clearyourcache,
950 #mw-sitecsspreview,
951 #mw-sitejspreview,
952 #mw-usercsspreview,
953 #mw-userjspreview {
954 direction: ltr;
955 unicode-bidi: embed;
956 }
957
958 /* Correct user & content directionality when viewing a diff */
959 .diff-currentversion-title,
960 .diff {
961 direction: ltr;
962 unicode-bidi: embed;
963 }
964 /* @noflip */ .diff-contentalign-right td {
965 direction: rtl;
966 unicode-bidi: embed;
967 }
968 /* @noflip */ .diff-contentalign-left td {
969 direction: ltr;
970 unicode-bidi: embed;
971 }
972 .diff-otitle,
973 .diff-ntitle,
974 .diff-lineno {
975 direction: ltr !important;
976 unicode-bidi: embed;
977 }
978
979 #mw-revision-info,
980 #mw-revision-nav {
981 direction: ltr;
982 }
983
984 /* Images */
985
986 /* @noflip */ div.tright,
987 div.floatright,
988 table.floatright {
989 clear: right;
990 float: right;
991 }
992 /* @noflip */ div.tleft,
993 div.floatleft,
994 table.floatleft {
995 float: left;
996 clear: left;
997 }
998 div.floatright,
999 table.floatright,
1000 div.floatleft,
1001 table.floatleft {
1002 position: relative;
1003 }
1004
1005 /* bug 12205 */
1006 #mw-credits a {
1007 unicode-bidi: embed;
1008 }
1009
1010 /* Accessibility */
1011 .mw-jump {
1012 overflow: hidden;
1013 height: 0;
1014 zoom: 1; /* http://webaim.org/techniques/skipnav/#iequirk */
1015 }
1016