04afcce7d8d0966b6a35feaba9a08d1077df2f12
[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 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 /* tooltip styles */
868 .mw-help-field-hint {
869 display: none;
870 margin-left: 2px;
871 margin-bottom: -8px;
872 padding: 0px 0px 0px 15px;
873 /* @embed */
874 background-image: url('images/help-question.gif');
875 background-position: left center;
876 background-repeat: no-repeat;
877 cursor: pointer;
878 font-size: .8em;
879 text-decoration: underline;
880 color: #0645ad;
881 }
882 .mw-help-field-hint:hover {
883 /* @embed */
884 background-image: url('images/help-question-hover.gif');
885 }
886 .mw-help-field-data {
887 display: block;
888 background-color: #d6f3ff;
889 padding:5px 8px 4px 8px;
890 border: 1px solid #5dc9f4;
891 margin-left: 20px;
892 }
893 .tipsy {
894 padding: 5px 5px 10px;
895 font-size: 12px;
896 position: absolute;
897 z-index: 100000;
898 overflow: visible;
899 }
900 .tipsy-inner {
901 padding: 5px 8px 4px 8px;
902 background-color: #d6f3ff;
903 color: black;
904 border: 1px solid #5dc9f4;
905 max-width: 300px;
906 text-align: left;
907 }
908 .tipsy-arrow {
909 position: absolute;
910 /* @embed */
911 background: url(images/tipsy-arrow.gif) no-repeat top left;
912 width: 13px;
913 height: 13px;
914 }
915 .tipsy-se .tipsy-arrow {
916 bottom: -2px;
917 right: 10px;
918 background-position: 0% 100%;
919 }
920 /* Table Sorting */
921 th.headerSort {
922 background-image: url(images/sort_both.gif);
923 cursor: pointer;
924 background-repeat: no-repeat;
925 background-position: center right;
926 padding-right: 21px;
927 }
928 th.headerSortUp {
929 background-image: url(images/sort_up.gif);
930 }
931 th.headerSortDown {
932 background-image: url(images/sort_down.gif);
933 }
934
935 /* LTR content in RTL layout */
936 .ltr {
937 /* @noflip */
938 direction: ltr;
939 unicode-bidi: embed;
940 }
941
942 #mw-clearyourcache,
943 #mw-sitecsspreview,
944 #mw-sitejspreview,
945 #mw-usercsspreview,
946 #mw-userjspreview {
947 direction: ltr;
948 unicode-bidi: embed;
949 }
950
951 /* Correct user & content directionality when viewing a diff */
952 .diff-currentversion-title,
953 .diff {
954 direction: ltr;
955 unicode-bidi: embed;
956 }
957 /* @noflip */ .diff-contentalign-right td {
958 direction: rtl;
959 unicode-bidi: embed;
960 }
961 /* @noflip */ .diff-contentalign-left td {
962 direction: ltr;
963 unicode-bidi: embed;
964 }
965 .diff-otitle,
966 .diff-ntitle,
967 .diff-lineno {
968 direction: ltr !important;
969 unicode-bidi: embed;
970 }
971
972 #mw-revision-info,
973 #mw-revision-nav {
974 direction: ltr;
975 }
976
977 /* Images */
978
979 /* @noflip */ div.tright,
980 div.floatright,
981 table.floatright {
982 clear: right;
983 float: right;
984 }
985 /* @noflip */ div.tleft,
986 div.floatleft,
987 table.floatleft {
988 float: left;
989 clear: left;
990 }
991 div.floatright,
992 table.floatright,
993 div.floatleft,
994 table.floatleft {
995 position: relative;
996 }
997
998 /* bug 12205 */
999 #mw-credits a {
1000 unicode-bidi: embed;
1001 }