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