Move mediawiki.legacy.* modules from skins/common/ to resources/
[lhc/web/wiklou.git] / resources / src / mediawiki.legacy / 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
18 .mw-content-rtl {
19 /* @noflip */
20 direction: rtl;
21 }
22
23 /* Most input fields should be in site direction */
24 .sitedir-ltr textarea,
25 .sitedir-ltr input {
26 /* @noflip */
27 direction: ltr;
28 }
29
30 .sitedir-rtl textarea,
31 .sitedir-rtl input {
32 /* @noflip */
33 direction: rtl;
34 }
35
36 /* User-Agent styles for new HTML5 elements */
37 mark {
38 background-color: yellow;
39 color: black;
40 }
41
42 /* Helper for wbr element on IE 8+; in HTML5, but not supported by default as of IE 11. */
43 /* Note canonical HTML5 styles recommend "content: \u200B", but this doesn't work as of IE 11. */
44 wbr {
45 display: inline-block;
46 }
47
48 /* Input types that should follow user direction, like buttons */
49 /* TODO: What about buttons in wikipage content ? */
50 input[type="submit"],
51 input[type="button"],
52 input[type="reset"],
53 input[type="file"] {
54 direction: ltr;
55 }
56
57 /* Override default values */
58 textarea[dir="ltr"],
59 input[dir="ltr"] {
60 /* @noflip */
61 direction: ltr;
62 }
63
64 textarea[dir="rtl"],
65 input[dir="rtl"] {
66 /* @noflip */
67 direction: rtl;
68 }
69
70 /* Default style for semantic tags */
71 abbr[title],
72 .explain[title] {
73 border-bottom: 1px dotted;
74 cursor: help;
75 }
76
77 /* Colored watchlist and recent changes numbers */
78 .mw-plusminus-pos {
79 color: #006400; /* dark green */
80 }
81
82 .mw-plusminus-neg {
83 color: #8b0000; /* dark red */
84 }
85
86 .mw-plusminus-null {
87 color: #aaa; /* gray */
88 }
89
90 /**
91 * Links to redirects appear italicized on [[Special:AllPages]], [[Special:PrefixIndex]],
92 * [[Special:Watchlist/edit]] and in category listings.
93 */
94 .allpagesredirect,
95 .redirect-in-category,
96 .watchlistredir {
97 font-style: italic;
98 }
99
100 /* Comment and username portions of RC entries */
101 span.comment {
102 font-style: italic;
103 }
104
105 span.changedby {
106 font-size: 95%;
107 }
108
109 /* Math */
110 .texvc {
111 direction: ltr;
112 unicode-bidi: embed;
113 }
114
115 img.tex {
116 vertical-align: middle;
117 }
118
119 span.texhtml {
120 font-family: serif;
121 }
122
123 /**
124 * Add a bit of margin space between the preview and the toolbar.
125 * This replaces the ugly <p><br /></p> we used to insert into the page source
126 */
127 #wikiPreview.ontop {
128 margin-bottom: 1em;
129 }
130
131 /* Stop floats from intruding into edit area in previews */
132 #editform,
133 #toolbar,
134 #wpTextbox1 {
135 clear: both;
136 }
137
138 #toolbar img {
139 cursor: pointer;
140 }
141
142 /**
143 * File description page
144 */
145
146 div.mw-filepage-resolutioninfo {
147 font-size: smaller;
148 }
149
150 /**
151 * File histories
152 */
153 h2#filehistory {
154 clear: both;
155 }
156
157 table.filehistory th,
158 table.filehistory td {
159 vertical-align: top;
160 }
161
162 table.filehistory th {
163 text-align: left;
164 }
165
166 table.filehistory td.mw-imagepage-filesize,
167 table.filehistory th.mw-imagepage-filesize {
168 white-space: nowrap;
169 }
170
171 table.filehistory td.filehistory-selected {
172 font-weight: bold;
173 }
174
175 /**
176 * Add a checkered background image on hover for file
177 * description pages. (bug 26470)
178 */
179 .filehistory a img,
180 #file img:hover {
181 /* @embed */
182 background: white url(images/checker.png) repeat;
183 }
184
185 /**
186 * rev_deleted stuff
187 */
188 li span.deleted,
189 span.history-deleted {
190 text-decoration: line-through;
191 color: #888;
192 font-style: italic;
193 }
194
195 /**
196 * Patrol stuff
197 */
198 .not-patrolled {
199 background-color: #ffa;
200 }
201
202 .unpatrolled {
203 font-weight: bold;
204 color: red;
205 }
206
207 div.patrollink {
208 font-size: 75%;
209 text-align: right;
210 }
211
212 /**
213 * Forms
214 */
215 td.mw-label {
216 text-align: right;
217 }
218
219 td.mw-input {
220 text-align: left;
221 }
222
223 td.mw-submit {
224 text-align: left;
225 }
226
227 td.mw-label {
228 vertical-align: top;
229 }
230
231 .prefsection td.mw-label {
232 width: 20%;
233 }
234
235 .prefsection table {
236 width: 100%;
237 }
238
239 .prefsection table.mw-htmlform-matrix {
240 width: auto;
241 }
242
243 .mw-icon-question {
244 /* SVG support using a transparent gradient to guarantee cross-browser
245 * compatibility (browsers able to understand gradient syntax support also SVG).
246 * http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique */
247 background-image: url(images/question.png);
248 /* @embed */
249 background-image: -webkit-linear-gradient(transparent, transparent), url(images/question.svg);
250 /* @embed */
251 background-image: linear-gradient(transparent, transparent), url(images/question.svg);
252 background-repeat: no-repeat;
253 background-size: 13px 13px;
254 display: inline-block;
255 height: 13px;
256 width: 13px;
257 margin-left: 4px;
258 }
259
260 .mw-icon-question:lang(ar),
261 .mw-icon-question:lang(fa),
262 .mw-icon-question:lang(ur) {
263 -webkit-transform: scaleX(-1);
264 -ms-transform: scaleX(-1);
265 transform: scaleX(-1);
266 }
267
268 td.mw-submit {
269 white-space: nowrap;
270 }
271
272 table.mw-htmlform-nolabel td.mw-label {
273 width: 1px;
274 }
275
276 tr.mw-htmlform-vertical-label td.mw-label {
277 text-align: left !important;
278 }
279
280 .mw-htmlform-invalid-input td.mw-input input {
281 border-color: red;
282 }
283
284 .mw-htmlform-flatlist div.mw-htmlform-flatlist-item {
285 display: inline;
286 margin-right: 1em;
287 white-space: nowrap;
288 }
289
290 .mw-htmlform-matrix td {
291 padding-left: 0.5em;
292 padding-right: 0.5em;
293 }
294
295 input#wpSummary {
296 width: 80%;
297 margin-bottom: 1em;
298 }
299
300 /**
301 * Image captions.
302 *
303 * This is only meant to provide the most basic of styles, visual settings shouldn't be added here.
304 */
305
306 /* @noflip */
307 .mw-content-ltr .thumbcaption {
308 text-align: left;
309 }
310
311 /* @noflip */
312 .mw-content-ltr .magnify {
313 float: right;
314 }
315
316 /* @noflip */
317 .mw-content-rtl .thumbcaption {
318 text-align: right;
319 }
320
321 /* @noflip */
322 .mw-content-rtl .magnify {
323 float: left;
324 }
325
326 /**
327 * Categories
328 */
329 #catlinks {
330 /**
331 * Overrides text justification (user preference)
332 * See bug 31990
333 */
334 text-align: left;
335 }
336
337 .catlinks ul {
338 display: inline;
339 margin: 0;
340 padding: 0;
341 list-style: none;
342 list-style-type: none;
343 list-style-image: none;
344 vertical-align: middle !ie;
345 }
346
347 .catlinks li {
348 display: inline-block;
349 line-height: 1.25em;
350 border-left: 1px solid #AAA;
351 margin: 0.125em 0;
352 padding: 0 0.5em;
353 zoom: 1;
354 display: inline !ie;
355 }
356
357 .catlinks li:first-child {
358 padding-left: 0.25em;
359 border-left: none;
360 }
361
362 /* (bug 5346) make category redirects italic */
363 .catlinks li a.mw-redirect {
364 font-style: italic;
365 }
366
367 /**
368 * Hidden categories
369 */
370 .mw-hidden-cats-hidden {
371 display: none;
372 }
373
374 .catlinks-allhidden {
375 display: none;
376 }
377
378 /**
379 * Convenience links to edit block, delete and protect reasons
380 * and upload licenses
381 */
382 p.mw-ipb-conveniencelinks,
383 p.mw-protect-editreasons,
384 p.mw-filedelete-editreasons,
385 p.mw-delete-editreasons,
386 p.mw-revdel-editreasons,
387 p.mw-upload-editlicenses {
388 font-size: 90%;
389 text-align: right;
390 }
391
392 /* Page history styling */
393
394 /* The auto-generated edit comments */
395 .autocomment {
396 color: gray;
397 }
398
399 #pagehistory .history-user {
400 margin-left: 0.4em;
401 margin-right: 0.2em;
402 }
403
404 #pagehistory span.minor {
405 font-weight: bold;
406 }
407
408 #pagehistory li {
409 border: 1px solid white;
410 }
411
412 #pagehistory li.selected {
413 background-color: #f9f9f9;
414 border: 1px dashed #aaa;
415 }
416
417 .mw-history-revisiondelete-button, #mw-fileduplicatesearch-icon {
418 float: right;
419 }
420
421 /** Generic minor/bot/newpage styling (recent changes) */
422 .newpage,
423 .minoredit,
424 .botedit {
425 font-weight: bold;
426 }
427
428 #shared-image-dup,
429 #shared-image-conflict {
430 font-style: italic;
431 }
432
433 /**
434 * Recreating deleted page warning
435 * Reupload file warning
436 * Page protection warning
437 * incl. log entries for these warnings
438 */
439 div.mw-warning-with-logexcerpt {
440 padding: 3px;
441 margin-bottom: 3px;
442 border: 2px solid #2F6FAB;
443 clear: both;
444 }
445
446 div.mw-warning-with-logexcerpt ul li {
447 font-size: 90%;
448 }
449
450 /* (show/hide) revision deletion links */
451 span.mw-revdelundel-link,
452 strong.mw-revdelundel-link {
453 font-size: 90%;
454 }
455
456 span.mw-revdelundel-hidden,
457 input.mw-revdelundel-hidden {
458 visibility: hidden;
459 }
460
461 td.mw-revdel-checkbox,
462 th.mw-revdel-checkbox {
463 padding-right: 10px;
464 text-align: center;
465 }
466
467 /* red links; see bug 36276 */
468 a.new {
469 color: #BA0000;
470 }
471
472 /* feed links */
473 a.feedlink {
474 /* SVG support using a transparent gradient to guarantee cross-browser
475 * compatibility (browsers able to understand gradient syntax support also SVG).
476 * http://pauginer.tumblr.com/post/36614680636/invisible-gradient-technique */
477 background-image: url(images/feed-icon.png);
478 /* @embed */
479 background-image: -webkit-linear-gradient(transparent, transparent), url(images/feed-icon.svg);
480 /* @embed */
481 background-image: linear-gradient(transparent, transparent), url(images/feed-icon.svg);
482 background-position: center left;
483 background-repeat: no-repeat;
484 background-size: 12px 12px;
485 padding-left: 16px;
486 }
487
488 /* Plainlinks - this can be used to switch
489 * off special external link styling */
490 .plainlinks a {
491 background: none !important;
492 padding: 0 !important;
493 }
494
495 /* External URLs should always be treated as LTR (bug 4330) */
496 /* @noflip */ .rtl a.external.free,
497 .rtl a.external.autonumber {
498 direction: ltr;
499 unicode-bidi: embed;
500 }
501
502 /**
503 * wikitable class for skinning normal tables
504 * keep in sync with commonPrint.css
505 */
506 table.wikitable {
507 margin: 1em 0;
508 background-color: #f9f9f9;
509 border: 1px #aaa solid;
510 border-collapse: collapse;
511 color: black;
512 }
513
514 table.wikitable > tr > th,
515 table.wikitable > tr > td,
516 table.wikitable > * > tr > th,
517 table.wikitable > * > tr > td {
518 border: 1px #aaa solid;
519 padding: 0.2em;
520 }
521
522 table.wikitable > tr > th,
523 table.wikitable > * > tr > th {
524 background-color: #f2f2f2;
525 text-align: center;
526 }
527
528 table.wikitable > caption {
529 font-weight: bold;
530 }
531
532 /**
533 * Hide collapsable rows in a collapsed table.
534 *
535 * Used by ImagePage and the mediawiki.action.view.metadata module.
536 */
537 table.collapsed tr.collapsable {
538 display: none;
539 }
540
541 /* success and error messages */
542 .error,
543 .warning,
544 .success {
545 font-size: larger;
546 }
547
548 .error {
549 color: #cc0000;
550 }
551
552 .warning {
553 color: #705000;
554 }
555
556 .success {
557 color: #009000;
558 }
559
560 .errorbox,
561 .warningbox,
562 .successbox {
563 border: 1px solid;
564 padding: .5em 1em;
565 margin-bottom: 1em;
566 display: -moz-inline-block;
567 display: inline-block;
568 zoom: 1;
569 *display: inline;
570 }
571
572 .errorbox h2,
573 .warningbox h2,
574 .successbox h2 {
575 font-size: 1em;
576 color: inherit;
577 font-weight: bold;
578 display: inline;
579 margin: 0 .5em 0 0;
580 border: none;
581 }
582
583 .errorbox {
584 color: #cc0000;
585 border-color: #fac5c5;
586 background-color: #fae3e3;
587 }
588
589 .warningbox {
590 color: #705000;
591 border-color: #fde29b;
592 background-color: #fdf1d1;
593 }
594
595 .successbox {
596 color: #009000;
597 border-color: #b7fdb5;
598 background-color: #e1fddf;
599 }
600
601 /* general info/warning box for SP */
602 .mw-infobox {
603 border: 2px solid #ff7f00;
604 margin: 0.5em;
605 clear: left;
606 overflow: hidden;
607 }
608
609 .mw-infobox-left {
610 margin: 7px;
611 float: left;
612 width: 35px;
613 }
614
615 .mw-infobox-right {
616 margin: 0.5em 0.5em 0.5em 49px;
617 }
618
619 /* Note on preview page */
620 .previewnote {
621 color: #c00;
622 margin-bottom: 1em;
623 }
624
625 .previewnote p {
626 text-indent: 3em;
627 margin: 0.8em 0;
628 }
629
630 .visualClear {
631 clear: both;
632 }
633
634 /**
635 * Data table style
636 *
637 * Transparent table with suddle borders
638 * and blue row-highlighting.
639 */
640 .mw-datatable {
641 border-collapse: collapse;
642 }
643
644 .mw-datatable,
645 .mw-datatable td,
646 .mw-datatable th {
647 border: 1px solid #aaaaaa;
648 padding: 0 0.15em 0 0.15em;
649 }
650
651 .mw-datatable th {
652 background-color: #ddddff;
653 }
654
655 .mw-datatable td {
656 background-color: #ffffff;
657 }
658
659 .mw-datatable tr:hover td {
660 background-color: #eeeeff;
661 }
662
663 /**
664 * TablePager tables generated by the TablePager PHP class
665 * in MediaWiki (e.g. Special:ListFiles).
666 */
667 .TablePager {
668 min-width: 80%;
669 }
670
671 .TablePager_nav {
672 margin: 0 auto;
673 }
674
675 .TablePager_nav td {
676 padding: 3px;
677 text-align: center;
678 }
679
680 .TablePager_nav a {
681 text-decoration: none;
682 }
683
684 /* filetoc */
685 ul#filetoc {
686 text-align: center;
687 border: 1px solid #aaaaaa;
688 background-color: #f9f9f9;
689 padding: 5px;
690 font-size: 95%;
691 margin-bottom: 0.5em;
692 margin-left: 0;
693 margin-right: 0;
694 }
695
696 #filetoc li {
697 display: inline;
698 list-style-type: none;
699 padding-right: 2em;
700 }
701
702 /* Classes for Exif data display */
703 table.mw_metadata {
704 font-size: 0.8em;
705 margin-left: 0.5em;
706 margin-bottom: 0.5em;
707 width: 400px;
708 }
709
710 table.mw_metadata caption {
711 font-weight: bold;
712 }
713
714 table.mw_metadata th {
715 font-weight: normal;
716 }
717
718 table.mw_metadata td {
719 padding: 0.1em;
720 }
721
722 table.mw_metadata {
723 border: none;
724 border-collapse: collapse;
725 }
726
727 table.mw_metadata td,
728 table.mw_metadata th {
729 text-align: center;
730 border: 1px solid #aaaaaa;
731 padding-left: 5px;
732 padding-right: 5px;
733 }
734
735 table.mw_metadata th {
736 background-color: #f9f9f9;
737 }
738
739 table.mw_metadata td {
740 background-color: #fcfcfc;
741 }
742
743 table.mw_metadata ul.metadata-langlist {
744 list-style-type: none;
745 list-style-image: none;
746 padding-right: 5px;
747 padding-left: 5px;
748 margin: 0;
749 }
750
751 /* Correct directionality when page dir is different from site/user dir */
752 .mw-content-ltr ul,
753 .mw-content-rtl .mw-content-ltr ul {
754 /* @noflip */
755 margin: 0.3em 0 0 1.6em;
756 padding: 0;
757 }
758
759 .mw-content-rtl ul,
760 .mw-content-ltr .mw-content-rtl ul {
761 /* @noflip */
762 margin: 0.3em 1.6em 0 0;
763 padding: 0;
764 }
765
766 .mw-content-ltr ol,
767 .mw-content-rtl .mw-content-ltr ol {
768 /* @noflip */
769 margin: 0.3em 0 0 3.2em;
770 padding: 0;
771 }
772
773 .mw-content-rtl ol,
774 .mw-content-ltr .mw-content-rtl ol {
775 /* @noflip */
776 margin: 0.3em 3.2em 0 0;
777 padding: 0;
778 }
779
780 /* @noflip */
781 .mw-content-ltr dd,
782 .mw-content-rtl .mw-content-ltr dd {
783 margin-left: 1.6em;
784 margin-right: 0;
785 }
786
787 /* @noflip */
788 .mw-content-rtl dd,
789 .mw-content-ltr .mw-content-rtl dd {
790 margin-right: 1.6em;
791 margin-left: 0;
792 }
793
794 /* Galleries */
795 /* These display attributes look nonsensical, but are needed to support IE and FF2 */
796 /* Don't forget to update commonPrint.css */
797 li.gallerybox {
798 vertical-align: top;
799 display: -moz-inline-box;
800 display: inline-block;
801 }
802
803 ul.gallery,
804 li.gallerybox {
805 zoom: 1;
806 *display: inline;
807 }
808
809 ul.gallery {
810 margin: 2px;
811 padding: 2px;
812 display: block;
813 }
814
815 li.gallerycaption {
816 font-weight: bold;
817 text-align: center;
818 display: block;
819 word-wrap: break-word;
820 }
821
822 li.gallerybox div.thumb {
823 text-align: center;
824 border: 1px solid #ccc;
825 background-color: #f9f9f9;
826 margin: 2px;
827 }
828
829 li.gallerybox div.thumb img {
830 display: block;
831 margin: 0 auto;
832 }
833
834 div.gallerytext {
835 overflow: hidden;
836 font-size: 94%;
837 padding: 2px 4px;
838 word-wrap: break-word;
839 }
840
841 /* new gallery stuff */
842 ul.mw-gallery-nolines li.gallerybox div.thumb {
843 background-color: transparent;
844 border: none;
845 }
846
847 ul.mw-gallery-nolines li.gallerybox div.gallerytext {
848 text-align: center;
849 }
850
851 /* height constrained gallery */
852
853 ul.mw-gallery-packed li.gallerybox div.thumb,
854 ul.mw-gallery-packed-overlay li.gallerybox div.thumb,
855 ul.mw-gallery-packed-hover li.gallerybox div.thumb {
856 background-color: transparent;
857 border: none;
858 }
859
860 ul.mw-gallery-packed li.gallerybox div.thumb img,
861 ul.mw-gallery-packed-overlay li.gallerybox div.thumb img,
862 ul.mw-gallery-packed-hover li.gallerybox div.thumb img {
863 margin: 0 auto;
864 }
865
866 ul.mw-gallery-packed-hover li.gallerybox,
867 ul.mw-gallery-packed-overlay li.gallerybox {
868 position: relative;
869 }
870
871 ul.mw-gallery-packed-hover div.gallerytextwrapper {
872 overflow: hidden;
873 height: 0;
874 }
875
876 ul.mw-gallery-packed-hover li.gallerybox:hover div.gallerytextwrapper,
877 ul.mw-gallery-packed-overlay li.gallerybox div.gallerytextwrapper,
878 ul.mw-gallery-packed-hover li.gallerybox.mw-gallery-focused div.gallerytextwrapper {
879 position: absolute;
880 background: white;
881 background: rgba(255, 255, 255, 0.8);
882 padding: 5px 10px;
883 bottom: 0;
884 left: 0; /* Needed for IE */
885 height: auto;
886 font-weight: bold;
887 margin: 2px; /* correspond to style on div.thumb */
888 }
889
890 ul.mw-gallery-packed-hover,
891 ul.mw-gallery-packed-overlay,
892 ul.mw-gallery-packed {
893 text-align: center;
894 }
895
896 .mw-ajax-loader {
897 /* @embed */
898 background-image: url(images/ajax-loader.gif);
899 background-position: center center;
900 background-repeat: no-repeat;
901 padding: 16px;
902 position: relative;
903 top: -16px;
904 }
905
906 .mw-small-spinner {
907 padding: 10px !important;
908 margin-right: 0.6em;
909 /* @embed */
910 background-image: url(images/spinner.gif);
911 background-position: center center;
912 background-repeat: no-repeat;
913 }
914
915 /* Language specific height correction for titles. Ref Bug 29405 and Bug 30809 */
916 /* Languages like hi or ml require slightly more vertical space to show diacritics properly */
917 h1:lang(anp),
918 h1:lang(as),
919 h1:lang(bh), /* Macrolanguage, used on bh.wikipedia.org, should be removed one day */
920 h1:lang(bho),
921 h1:lang(bn),
922 h1:lang(gu),
923 h1:lang(hi),
924 h1:lang(kn),
925 h1:lang(ks),
926 h1:lang(ml),
927 h1:lang(mr),
928 h1:lang(my),
929 h1:lang(mai),
930 h1:lang(ne),
931 h1:lang(new),
932 h1:lang(or),
933 h1:lang(pa),
934 h1:lang(pi),
935 h1:lang(sa),
936 h1:lang(ta),
937 h1:lang(te) {
938 line-height: 1.6em !important;
939 }
940
941 h2:lang(anp), h3:lang(anp), h4:lang(anp), h5:lang(anp), h6:lang(anp),
942 h2:lang(as), h3:lang(as), h4:lang(as), h5:lang(as), h6:lang(as),
943 h2:lang(bho), h3:lang(bho), h4:lang(bho), h5:lang(bho), h6:lang(bho),
944 h2:lang(bh), h3:lang(bh), h4:lang(bh), h5:lang(bh), h6:lang(bh),
945 h2:lang(bn), h3:lang(bn), h4:lang(bn), h5:lang(bn), h6:lang(bn),
946 h2:lang(gu), h3:lang(gu), h4:lang(gu), h5:lang(gu), h6:lang(gu),
947 h2:lang(hi), h3:lang(hi), h4:lang(hi), h5:lang(hi), h6:lang(hi),
948 h2:lang(kn), h3:lang(kn), h4:lang(kn), h5:lang(kn), h6:lang(kn),
949 h2:lang(ks), h3:lang(ks), h4:lang(ks), h5:lang(ks), h6:lang(ks),
950 h2:lang(ml), h3:lang(ml), h4:lang(ml), h5:lang(ml), h6:lang(ml),
951 h2:lang(mr), h3:lang(mr), h4:lang(mr), h5:lang(mr), h6:lang(mr),
952 h2:lang(my), h3:lang(my), h4:lang(my), h5:lang(my), h6:lang(my),
953 h2:lang(mai), h3:lang(mai), h4:lang(mai), h5:lang(mai), h6:lang(mai),
954 h2:lang(ne), h3:lang(ne), h4:lang(ne), h5:lang(ne), h6:lang(ne),
955 h2:lang(new), h3:lang(new), h4:lang(new), h5:lang(new), h6:lang(new),
956 h2:lang(or), h3:lang(or), h4:lang(or), h5:lang(or), h6:lang(or),
957 h2:lang(pa), h3:lang(pa), h4:lang(pa), h5:lang(pa), h6:lang(pa),
958 h2:lang(pi), h3:lang(pi), h4:lang(pi), h5:lang(pi), h6:lang(pi),
959 h2:lang(sa), h3:lang(sa), h4:lang(sa), h5:lang(sa), h6:lang(sa),
960 h2:lang(ta), h3:lang(ta), h4:lang(ta), h5:lang(ta), h6:lang(ta),
961 h2:lang(te), h3:lang(te), h4:lang(te), h5:lang(te), h6:lang(te) {
962 line-height: 1.2em;
963 }
964
965 /* Localised ordered list numbering for some languages */
966 ol:lang(bcc) li,
967 ol:lang(bqi) li,
968 ol:lang(fa) li,
969 ol:lang(glk) li,
970 ol:lang(kk-arab) li,
971 ol:lang(mzn) li {
972 list-style-type: -moz-persian;
973 list-style-type: persian;
974 }
975
976 ol:lang(ckb) li {
977 list-style-type: -moz-arabic-indic;
978 list-style-type: arabic-indic;
979 }
980
981 ol:lang(hi) li,
982 ol:lang(mr) li {
983 list-style-type: -moz-devanagari;
984 list-style-type: devanagari;
985 }
986
987 ol:lang(as) li,
988 ol:lang(bn) li {
989 list-style-type: -moz-bengali;
990 list-style-type: bengali;
991 }
992
993 ol:lang(or) li {
994 list-style-type: -moz-oriya;
995 list-style-type: oriya;
996 }
997
998 #toc ul, .toc ul {
999 margin: .3em 0;
1000 }
1001
1002 /* Correct directionality when page dir is different from site/user dir */
1003 /* @noflip */ .mw-content-ltr .toc ul,
1004 .mw-content-ltr #toc ul,
1005 .mw-content-rtl .mw-content-ltr .toc ul,
1006 .mw-content-rtl .mw-content-ltr #toc ul {
1007 text-align: left;
1008 }
1009
1010 /* @noflip */ .mw-content-rtl .toc ul,
1011 .mw-content-rtl #toc ul,
1012 .mw-content-ltr .mw-content-rtl .toc ul,
1013 .mw-content-ltr .mw-content-rtl #toc ul {
1014 text-align: right;
1015 }
1016
1017 /* @noflip */ .mw-content-ltr .toc ul ul,
1018 .mw-content-ltr #toc ul ul,
1019 .mw-content-rtl .mw-content-ltr .toc ul ul,
1020 .mw-content-rtl .mw-content-ltr #toc ul ul {
1021 margin: 0 0 0 2em;
1022 }
1023
1024 /* @noflip */ .mw-content-rtl .toc ul ul,
1025 .mw-content-rtl #toc ul ul,
1026 .mw-content-ltr .mw-content-rtl .toc ul ul,
1027 .mw-content-ltr .mw-content-rtl #toc ul ul {
1028 margin: 0 2em 0 0;
1029 }
1030
1031 #toc #toctitle,
1032 .toc #toctitle,
1033 #toc .toctitle,
1034 .toc .toctitle {
1035 direction: ltr;
1036 }
1037
1038 /* tooltip styles */
1039 .mw-help-field-hint {
1040 display: none;
1041 margin-left: 2px;
1042 margin-bottom: -8px;
1043 padding: 0 0 0 15px;
1044 /* @embed */
1045 background-image: url(images/help-question.gif);
1046 background-position: left center;
1047 background-repeat: no-repeat;
1048 cursor: pointer;
1049 font-size: .8em;
1050 text-decoration: underline;
1051 color: #0645ad;
1052 }
1053
1054 .mw-help-field-hint:hover {
1055 /* @embed */
1056 background-image: url(images/help-question-hover.gif);
1057 }
1058
1059 .mw-help-field-data {
1060 display: block;
1061 background-color: #d6f3ff;
1062 padding: 5px 8px 4px 8px;
1063 border: 1px solid #5dc9f4;
1064 margin-left: 20px;
1065 }
1066
1067 #mw-clearyourcache,
1068 #mw-sitecsspreview,
1069 #mw-sitejspreview,
1070 #mw-usercsspreview,
1071 #mw-userjspreview {
1072 direction: ltr;
1073 unicode-bidi: embed;
1074 }
1075
1076 /* Correct user & content directionality when viewing a diff */
1077 .diff-currentversion-title,
1078 .diff {
1079 direction: ltr;
1080 unicode-bidi: embed;
1081 }
1082
1083 /* @noflip */ .diff-contentalign-right td {
1084 direction: rtl;
1085 unicode-bidi: embed;
1086 }
1087
1088 /* @noflip */ .diff-contentalign-left td {
1089 direction: ltr;
1090 unicode-bidi: embed;
1091 }
1092
1093 .diff-multi,
1094 .diff-otitle,
1095 .diff-ntitle,
1096 .diff-lineno {
1097 direction: ltr !important;
1098 unicode-bidi: embed;
1099 }
1100
1101 #mw-revision-info,
1102 #mw-revision-info-current,
1103 #mw-revision-nav {
1104 direction: ltr;
1105 display: inline;
1106 }
1107
1108 /* Images */
1109
1110 /* @noflip */ div.tright,
1111 div.floatright,
1112 table.floatright {
1113 clear: right;
1114 float: right;
1115 }
1116
1117 /* @noflip */ div.tleft,
1118 div.floatleft,
1119 table.floatleft {
1120 float: left;
1121 clear: left;
1122 }
1123
1124 div.floatright,
1125 table.floatright,
1126 div.floatleft,
1127 table.floatleft {
1128 position: relative;
1129 }
1130
1131 /* bug 12205 */
1132 #mw-credits a {
1133 unicode-bidi: embed;
1134 }
1135
1136 /* Accessibility */
1137 .mw-jump,
1138 #jump-to-nav {
1139 overflow: hidden;
1140 height: 0;
1141 zoom: 1; /* http://webaim.org/techniques/skipnav/#iequirk */
1142 }
1143
1144 /* Print footer should be hidden by default in screen. */
1145 .printfooter {
1146 display: none;
1147 }
1148
1149 /* For developers */
1150 .xdebug-error {
1151 position: absolute;
1152 z-index: 99;
1153 }
1154
1155 .mw-editsection,
1156 .toctoggle,
1157 #jump-to-nav {
1158 -moz-user-select: none;
1159 -webkit-user-select: none;
1160 -ms-user-select: none;
1161 user-select: none;
1162 }
1163
1164 /* Display editsection links smaller and next to headings */
1165 .mw-editsection,
1166 .mw-editsection-like {
1167 font-size: small;
1168 font-weight: normal;
1169 margin-left: 1em;
1170 vertical-align: baseline;
1171 /* Reset line-height; headings tend to have it set to larger values */
1172 line-height: 1em;
1173 /* As .mw-editsection is a <span> (inline element), it is treated as part */
1174 /* of the heading content when selecting text by multiple clicks and thus */
1175 /* selected together with heading content, despite the user-select: none; */
1176 /* rule set above. This enforces non-selection without changing the look. */
1177 display: inline-block;
1178 }
1179
1180 /* Correct directionality when page dir is different from site/user dir */
1181 /* @noflip */
1182 .mw-content-ltr .mw-editsection,
1183 .mw-content-rtl .mw-content-ltr .mw-editsection {
1184 margin-left: 1em;
1185 }
1186
1187 /* @noflip */
1188 .mw-content-rtl .mw-editsection,
1189 .mw-content-ltr .mw-content-rtl .mw-editsection {
1190 margin-right: 1em;
1191 }
1192
1193 /* Prevent citations and subscripts from interfering with the line-height */
1194 sup,
1195 sub {
1196 line-height: 1;
1197 }