As reported in bug 31031, WebKit can mess up the TOC title (which is in user language...
[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 unicode-bidi: embed;
145 }
146 /* Correct directionality when page dir is different from site/user dir */
147 .mw-content-ltr .editsection,
148 .mw-content-rtl .mw-content-ltr .editsection {
149 /* @noflip */
150 float: right;
151 }
152 .mw-content-rtl .editsection,
153 .mw-content-ltr .mw-content-rtl .editsection {
154 /* @noflip */
155 float: left;
156 }
157
158 /**
159 * File description page
160 */
161
162 div.mw-filepage-resolutioninfo {
163 font-size: smaller;
164 }
165
166 /**
167 * File histories
168 */
169 h2#filehistory {
170 clear: both;
171 }
172
173 table.filehistory th,
174 table.filehistory td {
175 vertical-align: top;
176 }
177 table.filehistory th {
178 text-align: left;
179 }
180 table.filehistory td.mw-imagepage-filesize,
181 table.filehistory th.mw-imagepage-filesize {
182 white-space: nowrap;
183 }
184
185 table.filehistory td.filehistory-selected {
186 font-weight: bold;
187 }
188
189 /**
190 * Add a checkered background image on hover for file
191 * description pages. (bug 26470)
192 */
193 .filehistory a img,
194 #file img:hover {
195 /* @embed */
196 background: white url(images/Checker-16x16.png) repeat;
197 }
198
199 /**
200 * rev_deleted stuff
201 */
202 li span.deleted,
203 span.history-deleted {
204 text-decoration: line-through;
205 color: #888;
206 font-style: italic;
207 }
208
209 /**
210 * Patrol stuff
211 */
212 .not-patrolled {
213 background-color: #ffa;
214 }
215
216 .unpatrolled {
217 font-weight: bold;
218 color: red;
219 }
220
221 div.patrollink {
222 font-size: 75%;
223 text-align: right;
224 }
225
226 /**
227 * Forms
228 */
229 td.mw-label {
230 text-align: right;
231 }
232 td.mw-input {
233 text-align: left;
234 }
235 td.mw-submit {
236 text-align: left;
237 }
238
239 td.mw-label {
240 vertical-align: top;
241 }
242 .prefsection td.mw-label {
243 width: 20%;
244 }
245 .prefsection table {
246 width: 100%;
247 }
248 td.mw-submit {
249 white-space: nowrap;
250 }
251
252 table.mw-htmlform-nolabel td.mw-label {
253 width: 0 !important;
254 }
255
256 tr.mw-htmlform-vertical-label td.mw-label {
257 text-align: left !important;
258 }
259
260 .mw-htmlform-invalid-input td.mw-input input {
261 border-color: red;
262 }
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: 0px;
289 padding: 0px;
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: 1.35em;
299 padding: 0 .7em;
300 border-left: 1px solid #AAA;
301 margin: 0.3em 0;
302 zoom: 1;
303 display: inline !ie;
304 }
305
306 .catlinks li:first-child {
307 padding-left: .4em;
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: 0px;
338 left: 0px;
339 width: 0px;
340 background-color: white;
341 background-color: Window;
342 border-style: solid;
343 border-color: #AAAAAA;
344 border-width: 1px;
345 z-index:99;
346 font-size:95%;
347 }
348
349 table.os-suggest-results {
350 font-size: 95%;
351 cursor: pointer;
352 border: 0;
353 border-collapse: collapse;
354 width: 100%;
355 }
356
357 .os-suggest-result,
358 .os-suggest-result-hl {
359 white-space: nowrap;
360 background-color: white;
361 background-color: Window;
362 color: black;
363 color: WindowText;
364 padding: 2px;
365 }
366 .os-suggest-result-hl,
367 .os-suggest-result-hl-webkit {
368 background-color: #4C59A6;
369 color: white;
370 }
371 .os-suggest-result-hl {
372 /* System colors are misimplemented in Safari 3.0 and earlier,
373 * making highlighted text illegible...
374 */
375 background-color: Highlight;
376 color: HighlightText;
377 }
378
379 .os-suggest-toggle {
380 position: relative;
381 left: 1ex;
382 font-size: 65%;
383 }
384 .os-suggest-toggle-def {
385 position: absolute;
386 top: 0px;
387 left: 0px;
388 font-size: 65%;
389 visibility: hidden;
390 }
391
392 /* Page history styling */
393
394 /* The auto-generated edit comments */
395 .autocomment {
396 color: gray;
397 }
398 #pagehistory .history-user {
399 margin-left: 0.4em;
400 margin-right: 0.2em;
401 }
402 #pagehistory span.minor {
403 font-weight: bold;
404 }
405 #pagehistory li {
406 border: 1px solid white;
407 }
408 #pagehistory li.selected {
409 background-color: #f9f9f9;
410 border: 1px dashed #aaa;
411 }
412
413 .mw-history-revisiondelete-button, #mw-fileduplicatesearch-icon {
414 float: right;
415 }
416
417 /** Generic minor/bot/newpage styling (recent changes) */
418 .newpage,
419 .minor,
420 .bot {
421 font-weight: bold;
422 }
423
424 #shared-image-dup,
425 #shared-image-conflict {
426 font-style: italic;
427 }
428
429 /**
430 * Recreating deleted page warning
431 * Reupload file warning
432 * Page protection warning
433 * incl. log entries for these warnings
434 */
435 div.mw-warning-with-logexcerpt {
436 padding: 3px;
437 margin-bottom: 3px;
438 border: 2px solid #2F6FAB;
439 clear: both;
440 }
441 div.mw-warning-with-logexcerpt ul li {
442 font-size: 90%;
443 }
444
445 /* (show/hide) revision deletion links */
446 span.mw-revdelundel-link,
447 strong.mw-revdelundel-link {
448 font-size: 90%;
449 }
450 span.mw-revdelundel-hidden,
451 input.mw-revdelundel-hidden {
452 visibility: hidden;
453 }
454
455 td.mw-revdel-checkbox,
456 th.mw-revdel-checkbox {
457 padding-right: 10px;
458 text-align: center;
459 }
460
461 /* feed links */
462 a.feedlink {
463 /* @embed */
464 background: url("images/feed-icon.png") center left no-repeat;
465 padding-left: 16px;
466 }
467
468 /* Plainlinks - this can be used to switch
469 * off special external link styling */
470 .plainlinks a {
471 background: none !important;
472 padding: 0 !important;
473 }
474 /* External URLs should always be treated as LTR (bug 4330) */
475 /* @noflip */ .rtl a.external.free,
476 .rtl a.external.autonumber {
477 direction: ltr;
478 unicode-bidi: embed;
479 }
480
481 /* wikitable class for skinning normal tables
482 * keep on sync with commonPrint.css
483 */
484 table.wikitable {
485 margin: 1em 1em 1em 0;
486 background: #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: #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 /* Table Sorting */
929 th.headerSort {
930 background-image: url(images/sort_both.gif);
931 cursor: pointer;
932 background-repeat: no-repeat;
933 background-position: center right;
934 padding-right: 21px;
935 }
936 th.headerSortUp {
937 background-image: url(images/sort_up.gif);
938 }
939 th.headerSortDown {
940 background-image: url(images/sort_down.gif);
941 }
942
943 /* LTR content in RTL layout */
944 .ltr {
945 /* @noflip */
946 direction: ltr;
947 unicode-bidi: embed;
948 }
949
950 #mw-clearyourcache,
951 #mw-sitecsspreview,
952 #mw-sitejspreview,
953 #mw-usercsspreview,
954 #mw-userjspreview {
955 direction: ltr;
956 unicode-bidi: embed;
957 }
958
959 /* Correct user & content directionality when viewing a diff */
960 .diff-currentversion-title,
961 .diff {
962 direction: ltr;
963 unicode-bidi: embed;
964 }
965 /* @noflip */ .diff-contentalign-right td {
966 direction: rtl;
967 unicode-bidi: embed;
968 }
969 /* @noflip */ .diff-contentalign-left td {
970 direction: ltr;
971 unicode-bidi: embed;
972 }
973 .diff-otitle,
974 .diff-ntitle,
975 .diff-lineno {
976 direction: ltr !important;
977 unicode-bidi: embed;
978 }
979
980 #mw-revision-info,
981 #mw-revision-nav {
982 direction: ltr;
983 }
984
985 /* Images */
986
987 /* @noflip */ div.tright,
988 div.floatright,
989 table.floatright {
990 clear: right;
991 float: right;
992 }
993 /* @noflip */ div.tleft,
994 div.floatleft,
995 table.floatleft {
996 float: left;
997 clear: left;
998 }
999 div.floatright,
1000 table.floatright,
1001 div.floatleft,
1002 table.floatleft {
1003 position: relative;
1004 }
1005
1006 /* bug 12205 */
1007 #mw-credits a {
1008 unicode-bidi: embed;
1009 }