695c6e599a2d245041315fe85c7c7c4f12b5ba9e
[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: 0;
288 padding: 0;
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: 0;
337 left: 0;
338 width: 0;
339 background-color: white;
340 border-style: solid;
341 border-color: #AAAAAA;
342 border-width: 1px;
343 z-index:99;
344 font-size:95%;
345 }
346
347 table.os-suggest-results {
348 font-size: 95%;
349 cursor: pointer;
350 border: 0;
351 border-collapse: collapse;
352 width: 100%;
353 }
354
355 .os-suggest-result,
356 .os-suggest-result-hl {
357 white-space: nowrap;
358 background-color: white;
359 color: black;
360 padding: 2px;
361 }
362 .os-suggest-result-hl,
363 .os-suggest-result-hl-webkit {
364 background-color: #4C59A6;
365 color: white;
366 }
367
368 .os-suggest-toggle {
369 position: relative;
370 left: 1ex;
371 font-size: 65%;
372 }
373 .os-suggest-toggle-def {
374 position: absolute;
375 top: 0;
376 left: 0;
377 font-size: 65%;
378 visibility: hidden;
379 }
380
381 /* Page history styling */
382
383 /* The auto-generated edit comments */
384 .autocomment {
385 color: gray;
386 }
387 #pagehistory .history-user {
388 margin-left: 0.4em;
389 margin-right: 0.2em;
390 }
391 #pagehistory span.minor {
392 font-weight: bold;
393 }
394 #pagehistory li {
395 border: 1px solid white;
396 }
397 #pagehistory li.selected {
398 background-color: #f9f9f9;
399 border: 1px dashed #aaa;
400 }
401
402 .mw-history-revisiondelete-button, #mw-fileduplicatesearch-icon {
403 float: right;
404 }
405
406 /** Generic minor/bot/newpage styling (recent changes) */
407 .newpage,
408 .minoredit,
409 .botedit {
410 font-weight: bold;
411 }
412
413 #shared-image-dup,
414 #shared-image-conflict {
415 font-style: italic;
416 }
417
418 /**
419 * Recreating deleted page warning
420 * Reupload file warning
421 * Page protection warning
422 * incl. log entries for these warnings
423 */
424 div.mw-warning-with-logexcerpt {
425 padding: 3px;
426 margin-bottom: 3px;
427 border: 2px solid #2F6FAB;
428 clear: both;
429 }
430 div.mw-warning-with-logexcerpt ul li {
431 font-size: 90%;
432 }
433
434 /* (show/hide) revision deletion links */
435 span.mw-revdelundel-link,
436 strong.mw-revdelundel-link {
437 font-size: 90%;
438 }
439 span.mw-revdelundel-hidden,
440 input.mw-revdelundel-hidden {
441 visibility: hidden;
442 }
443
444 td.mw-revdel-checkbox,
445 th.mw-revdel-checkbox {
446 padding-right: 10px;
447 text-align: center;
448 }
449
450 /* feed links */
451 a.feedlink {
452 /* @embed */
453 background: url(images/feed-icon.png) center left no-repeat;
454 padding-left: 16px;
455 }
456
457 /* Plainlinks - this can be used to switch
458 * off special external link styling */
459 .plainlinks a {
460 background: none !important;
461 padding: 0 !important;
462 }
463 /* External URLs should always be treated as LTR (bug 4330) */
464 /* @noflip */ .rtl a.external.free,
465 .rtl a.external.autonumber {
466 direction: ltr;
467 unicode-bidi: embed;
468 }
469
470 /**
471 * wikitable class for skinning normal tables
472 * keep in sync with commonPrint.css
473 */
474 table.wikitable {
475 margin: 1em 1em 1em 0;
476 background-color: #f9f9f9;
477 border: 1px #aaa solid;
478 border-collapse: collapse;
479 color: black;
480 }
481 .wikitable th,
482 .wikitable td {
483 border: 1px #aaa solid;
484 padding: 0.2em;
485 }
486 .wikitable th {
487 background-color: #f2f2f2;
488 text-align: center;
489 }
490 .wikitable caption {
491 font-weight: bold;
492 }
493
494 /* hide initially collapsed collapsable tables */
495 table.collapsed tr.collapsable {
496 display: none;
497 }
498
499 /* success and error messages */
500 .success {
501 color: green;
502 font-size: larger;
503 }
504 .warning {
505 color: #FFA500; /* orange */
506 font-size: larger;
507 }
508 .error {
509 color: red;
510 font-size: larger;
511 }
512 .errorbox,
513 .warningbox,
514 .successbox {
515 font-size: larger;
516 border: 2px solid;
517 padding: .5em 1em;
518 float: left;
519 margin-bottom: 2em;
520 color: #000;
521 }
522 .errorbox {
523 border-color: red;
524 background-color: #fff2f2;
525 }
526 .warningbox {
527 border-color: #FF8C00; /* darkorange */
528 background-color: #FFFFC0;
529 }
530 .successbox {
531 border-color: green;
532 background-color: #dfd;
533 }
534 .errorbox h2,
535 .warningbox h2,
536 .successbox h2 {
537 font-size: 1em;
538 font-weight: bold;
539 display: inline;
540 margin: 0 .5em 0 0;
541 border: none;
542 }
543
544 /* general info/warning box for SP */
545 .mw-infobox {
546 border: 2px solid #ff7f00;
547 margin: 0.5em;
548 clear: left;
549 overflow: hidden;
550 }
551
552 .mw-infobox-left {
553 margin: 7px;
554 float: left;
555 width: 35px;
556 }
557
558 .mw-infobox-right {
559 margin: 0.5em 0.5em 0.5em 49px;
560 }
561
562 /* Note on preview page */
563 .previewnote {
564 color: #c00;
565 margin-bottom: 1em;
566 }
567
568 .previewnote p {
569 text-indent: 3em;
570 margin: 0.8em 0;
571 }
572
573 .visualClear {
574 clear: both;
575 }
576
577 #mw_trackbacks {
578 border: solid 1px #bbbbff;
579 background-color: #eeeeff;
580 padding: 0.2em;
581 }
582
583 /**
584 * Data table style
585 *
586 * Transparent table with suddle borders
587 * and blue row-highlighting.
588 */
589 .mw-datatable {
590 border-collapse: collapse;
591 }
592 .mw-datatable,
593 .mw-datatable td,
594 .mw-datatable th {
595 border: 1px solid #aaaaaa;
596 padding: 0 0.15em 0 0.15em;
597 }
598 .mw-datatable th {
599 background-color: #ddddff;
600 }
601 .mw-datatable td {
602 background-color: #ffffff;
603 }
604 .mw-datatable tr:hover td {
605 background-color: #eeeeff;
606 }
607
608
609 /**
610 * TablePager tables generated by the TablePager PHP class
611 * in MediaWiki (e.g. Special:ListFiles).
612 */
613 .TablePager {
614 min-width: 80%;
615 }
616 .TablePager_nav {
617 margin: 0 auto;
618 }
619 .TablePager_nav td {
620 padding: 3px;
621 text-align: center;
622 }
623 .TablePager_nav a {
624 text-decoration: none;
625 }
626
627 .imagelist td,
628 .imagelist th {
629 white-space: nowrap;
630 }
631 .imagelist .TablePager_col_links {
632 background-color: #eeeeff;
633 }
634 .imagelist .TablePager_col_img_description {
635 white-space: normal;
636 }
637 .imagelist th.TablePager_sort {
638 background-color: #ccccff;
639 }
640
641 /* filetoc */
642 ul#filetoc {
643 text-align: center;
644 border: 1px solid #aaaaaa;
645 background-color: #f9f9f9;
646 padding: 5px;
647 font-size: 95%;
648 margin-bottom: 0.5em;
649 margin-left: 0;
650 margin-right: 0;
651 }
652
653 #filetoc li {
654 display: inline;
655 list-style-type: none;
656 padding-right: 2em;
657 }
658
659 /* Classes for EXIF data display */
660 table.mw_metadata {
661 font-size: 0.8em;
662 margin-left: 0.5em;
663 margin-bottom: 0.5em;
664 width: 400px;
665 }
666
667 table.mw_metadata caption {
668 font-weight: bold;
669 }
670
671 table.mw_metadata th {
672 font-weight: normal;
673 }
674
675 table.mw_metadata td {
676 padding: 0.1em;
677 }
678
679 table.mw_metadata {
680 border: none;
681 border-collapse: collapse;
682 }
683
684 table.mw_metadata td,
685 table.mw_metadata th {
686 text-align: center;
687 border: 1px solid #aaaaaa;
688 padding-left: 5px;
689 padding-right: 5px;
690 }
691
692 table.mw_metadata th {
693 background-color: #f9f9f9;
694 }
695
696 table.mw_metadata td {
697 background-color: #fcfcfc;
698 }
699
700 table.mw_metadata ul.metadata-langlist {
701 list-style-type: none;
702 list-style-image: none;
703 padding-right: 5px;
704 padding-left: 5px;
705 margin: 0;
706 }
707
708 /* Correct directionality when page dir is different from site/user dir */
709 .mw-content-ltr ul,
710 .mw-content-rtl .mw-content-ltr ul {
711 /* @noflip */
712 margin: 0.3em 0 0 1.5em;
713 padding: 0;
714 }
715 .mw-content-rtl ul,
716 .mw-content-ltr .mw-content-rtl ul {
717 /* @noflip */
718 margin: 0.3em 1.5em 0 0;
719 padding: 0;
720 }
721 .mw-content-ltr ol,
722 .mw-content-rtl .mw-content-ltr ol {
723 /* @noflip */
724 margin: 0.3em 0 0 3.2em;
725 padding: 0;
726 }
727 .mw-content-rtl ol,
728 .mw-content-ltr .mw-content-rtl ol {
729 /* @noflip */
730 margin: 0.3em 3.2em 0 0;
731 padding: 0;
732 }
733
734 /* Galleries */
735 /* These display attributes look nonsensical, but are needed to support IE and FF2 */
736 /* Don't forget to update commonPrint.css */
737 li.gallerybox {
738 vertical-align: top;
739 border: solid 2px white;
740 display: -moz-inline-box;
741 display: inline-block;
742 }
743
744 ul.gallery {
745 margin: 2px;
746 padding: 2px;
747 display: inline-block;
748 }
749
750 ul.gallery,
751 li.gallerybox {
752 zoom: 1;
753 display: inline !ie;
754 }
755
756 li.gallerycaption {
757 font-weight: bold;
758 text-align: center;
759 display: block;
760 word-wrap: break-word;
761 }
762
763 li.gallerybox div.thumb {
764 text-align: center;
765 border: 1px solid #ccc;
766 background-color: #f9f9f9;
767 margin: 2px;
768 }
769
770 li.gallerybox div.thumb img {
771 display: block;
772 margin: 0 auto;
773 }
774
775 div.gallerytext {
776 overflow: hidden;
777 font-size: 94%;
778 padding: 2px 4px;
779 word-wrap: break-word;
780 }
781
782 .mw-ajax-loader {
783 /* @embed */
784 background-image: url(images/ajax-loader.gif);
785 background-position: center center;
786 background-repeat: no-repeat;
787 padding: 16px;
788 position: relative;
789 top: -16px;
790 }
791
792 .mw-small-spinner {
793 padding: 10px !important;
794 margin-right: 0.6em;
795 /* @embed */
796 background-image: url(images/spinner.gif);
797 background-position: center center;
798 background-repeat: no-repeat;
799 }
800
801 /* Language specific height correction for titles. Ref Bug 29405 and Bug 30809 */
802 /* Languages like hi or ml require slightly more vertical space to show diacritics properly */
803 h1:lang(hi),
804 h1:lang(ml) {
805 line-height: 1.5em;
806 }
807 h2:lang(hi),
808 h2:lang(ml),
809 h3:lang(hi),
810 h3:lang(ml),
811 h4:lang(hi),
812 h4:lang(ml),
813 h5:lang(hi),
814 h5:lang(ml),
815 h6:lang(hi),
816 h6:lang(ml) {
817 line-height: 1.2em;
818 }
819
820 /* Localised ordered list numbering for some languages */
821 ol:lang(bcc) li,
822 ol:lang(bqi) li,
823 ol:lang(fa) li,
824 ol:lang(glk) li,
825 ol:lang(kk-arab) li,
826 ol:lang(mzn) li {
827 list-style-type: -moz-persian;
828 list-style-type: persian;
829 }
830
831 ol:lang(ckb) li {
832 list-style-type: -moz-arabic-indic;
833 list-style-type: arabic-indic;
834 }
835
836 ol:lang(as) li,
837 ol:lang(bn) li {
838 list-style-type: -moz-bengali;
839 list-style-type: bengali;
840 }
841
842 ol:lang(or) li {
843 list-style-type: -moz-oriya;
844 list-style-type: oriya;
845 }
846
847 #toc ul, .toc ul {
848 margin: .3em 0;
849 }
850
851 /* Correct directionality when page dir is different from site/user dir */
852 /* @noflip */ .mw-content-ltr .toc ul,
853 .mw-content-ltr #toc ul,
854 .mw-content-rtl .mw-content-ltr .toc ul,
855 .mw-content-rtl .mw-content-ltr #toc ul {
856 text-align: left;
857 }
858 /* @noflip */ .mw-content-rtl .toc ul,
859 .mw-content-rtl #toc ul,
860 .mw-content-ltr .mw-content-rtl .toc ul,
861 .mw-content-ltr .mw-content-rtl #toc ul {
862 text-align: right;
863 }
864 /* @noflip */ .mw-content-ltr .toc ul ul,
865 .mw-content-ltr #toc ul ul,
866 .mw-content-rtl .mw-content-ltr .toc ul ul,
867 .mw-content-rtl .mw-content-ltr #toc ul ul {
868 margin: 0 0 0 2em;
869 }
870 /* @noflip */ .mw-content-rtl .toc ul ul,
871 .mw-content-rtl #toc ul ul,
872 .mw-content-ltr .mw-content-rtl .toc ul ul,
873 .mw-content-ltr .mw-content-rtl #toc ul ul {
874 margin: 0 2em 0 0;
875 }
876
877 #toc #toctitle,
878 .toc #toctitle,
879 #toc .toctitle,
880 .toc .toctitle {
881 direction: ltr;
882 }
883
884 /* tooltip styles */
885 .mw-help-field-hint {
886 display: none;
887 margin-left: 2px;
888 margin-bottom: -8px;
889 padding: 0 0 0 15px;
890 /* @embed */
891 background-image: url('images/help-question.gif');
892 background-position: left center;
893 background-repeat: no-repeat;
894 cursor: pointer;
895 font-size: .8em;
896 text-decoration: underline;
897 color: #0645ad;
898 }
899 .mw-help-field-hint:hover {
900 /* @embed */
901 background-image: url('images/help-question-hover.gif');
902 }
903 .mw-help-field-data {
904 display: block;
905 background-color: #d6f3ff;
906 padding:5px 8px 4px 8px;
907 border: 1px solid #5dc9f4;
908 margin-left: 20px;
909 }
910 .tipsy {
911 padding: 5px 5px 10px;
912 font-size: 12px;
913 position: absolute;
914 z-index: 100000;
915 overflow: visible;
916 }
917 .tipsy-inner {
918 padding: 5px 8px 4px 8px;
919 background-color: #d6f3ff;
920 color: black;
921 border: 1px solid #5dc9f4;
922 max-width: 300px;
923 text-align: left;
924 }
925 .tipsy-arrow {
926 position: absolute;
927 /* @embed */
928 background: url(images/tipsy-arrow.gif) no-repeat top left;
929 width: 13px;
930 height: 13px;
931 }
932 .tipsy-se .tipsy-arrow {
933 bottom: -2px;
934 right: 10px;
935 background-position: 0% 100%;
936 }
937
938 /* LTR content in RTL layout */
939 .ltr {
940 /* @noflip */
941 direction: ltr;
942 unicode-bidi: embed;
943 }
944
945 #mw-clearyourcache,
946 #mw-sitecsspreview,
947 #mw-sitejspreview,
948 #mw-usercsspreview,
949 #mw-userjspreview {
950 direction: ltr;
951 unicode-bidi: embed;
952 }
953
954 /* Correct user & content directionality when viewing a diff */
955 .diff-currentversion-title,
956 .diff {
957 direction: ltr;
958 unicode-bidi: embed;
959 }
960 /* @noflip */ .diff-contentalign-right td {
961 direction: rtl;
962 unicode-bidi: embed;
963 }
964 /* @noflip */ .diff-contentalign-left td {
965 direction: ltr;
966 unicode-bidi: embed;
967 }
968 .diff-otitle,
969 .diff-ntitle,
970 .diff-lineno {
971 direction: ltr !important;
972 unicode-bidi: embed;
973 }
974
975 #mw-revision-info,
976 #mw-revision-nav {
977 direction: ltr;
978 }
979
980 /* Images */
981
982 /* @noflip */ div.tright,
983 div.floatright,
984 table.floatright {
985 clear: right;
986 float: right;
987 }
988 /* @noflip */ div.tleft,
989 div.floatleft,
990 table.floatleft {
991 float: left;
992 clear: left;
993 }
994 div.floatright,
995 table.floatright,
996 div.floatleft,
997 table.floatleft {
998 position: relative;
999 }
1000
1001 /* bug 12205 */
1002 #mw-credits a {
1003 unicode-bidi: embed;
1004 }
1005
1006 /* Accessibility */
1007 .mw-jump {
1008 overflow: hidden;
1009 height: 0;
1010 zoom: 1; /* http://webaim.org/techniques/skipnav/#iequirk */
1011 }
1012