Merge "Use protocol default port with HTTP_X_FORWARDED_PROTO"
[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.external {
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 /* filetoc */
664 ul#filetoc {
665 text-align: center;
666 border: 1px solid #aaaaaa;
667 background-color: #f9f9f9;
668 padding: 5px;
669 font-size: 95%;
670 margin-bottom: 0.5em;
671 margin-left: 0;
672 margin-right: 0;
673 }
674
675 #filetoc li {
676 display: inline;
677 list-style-type: none;
678 padding-right: 2em;
679 }
680
681 /* Classes for Exif data display */
682 table.mw_metadata {
683 font-size: 0.8em;
684 margin-left: 0.5em;
685 margin-bottom: 0.5em;
686 width: 400px;
687 }
688
689 table.mw_metadata caption {
690 font-weight: bold;
691 }
692
693 table.mw_metadata th {
694 font-weight: normal;
695 }
696
697 table.mw_metadata td {
698 padding: 0.1em;
699 }
700
701 table.mw_metadata {
702 border: none;
703 border-collapse: collapse;
704 }
705
706 table.mw_metadata td,
707 table.mw_metadata th {
708 text-align: center;
709 border: 1px solid #aaaaaa;
710 padding-left: 5px;
711 padding-right: 5px;
712 }
713
714 table.mw_metadata th {
715 background-color: #f9f9f9;
716 }
717
718 table.mw_metadata td {
719 background-color: #fcfcfc;
720 }
721
722 table.mw_metadata ul.metadata-langlist {
723 list-style-type: none;
724 list-style-image: none;
725 padding-right: 5px;
726 padding-left: 5px;
727 margin: 0;
728 }
729
730 /* Correct directionality when page dir is different from site/user dir */
731 .mw-content-ltr ul,
732 .mw-content-rtl .mw-content-ltr ul {
733 /* @noflip */
734 margin: 0.3em 0 0 1.6em;
735 padding: 0;
736 }
737
738 .mw-content-rtl ul,
739 .mw-content-ltr .mw-content-rtl ul {
740 /* @noflip */
741 margin: 0.3em 1.6em 0 0;
742 padding: 0;
743 }
744
745 .mw-content-ltr ol,
746 .mw-content-rtl .mw-content-ltr ol {
747 /* @noflip */
748 margin: 0.3em 0 0 3.2em;
749 padding: 0;
750 }
751
752 .mw-content-rtl ol,
753 .mw-content-ltr .mw-content-rtl ol {
754 /* @noflip */
755 margin: 0.3em 3.2em 0 0;
756 padding: 0;
757 }
758
759 /* @noflip */
760 .mw-content-ltr dd,
761 .mw-content-rtl .mw-content-ltr dd {
762 margin-left: 1.6em;
763 margin-right: 0;
764 }
765
766 /* @noflip */
767 .mw-content-rtl dd,
768 .mw-content-ltr .mw-content-rtl dd {
769 margin-right: 1.6em;
770 margin-left: 0;
771 }
772
773 /* Galleries */
774 /* These display attributes look nonsensical, but are needed to support IE and FF2 */
775 /* Don't forget to update commonPrint.css */
776 li.gallerybox {
777 vertical-align: top;
778 display: -moz-inline-box;
779 display: inline-block;
780 }
781
782 ul.gallery,
783 li.gallerybox {
784 zoom: 1;
785 *display: inline;
786 }
787
788 ul.gallery {
789 margin: 2px;
790 padding: 2px;
791 display: block;
792 }
793
794 li.gallerycaption {
795 font-weight: bold;
796 text-align: center;
797 display: block;
798 word-wrap: break-word;
799 }
800
801 li.gallerybox div.thumb {
802 text-align: center;
803 border: 1px solid #ccc;
804 background-color: #f9f9f9;
805 margin: 2px;
806 }
807
808 li.gallerybox div.thumb img {
809 display: block;
810 margin: 0 auto;
811 }
812
813 div.gallerytext {
814 overflow: hidden;
815 font-size: 94%;
816 padding: 2px 4px;
817 word-wrap: break-word;
818 }
819
820 /* new gallery stuff */
821 ul.mw-gallery-nolines li.gallerybox div.thumb {
822 background-color: transparent;
823 border: none;
824 }
825
826 ul.mw-gallery-nolines li.gallerybox div.gallerytext {
827 text-align: center;
828 }
829
830 /* height constrained gallery */
831
832 ul.mw-gallery-packed li.gallerybox div.thumb,
833 ul.mw-gallery-packed-overlay li.gallerybox div.thumb,
834 ul.mw-gallery-packed-hover li.gallerybox div.thumb {
835 background-color: transparent;
836 border: none;
837 }
838
839 ul.mw-gallery-packed li.gallerybox div.thumb img,
840 ul.mw-gallery-packed-overlay li.gallerybox div.thumb img,
841 ul.mw-gallery-packed-hover li.gallerybox div.thumb img {
842 margin: 0 auto;
843 }
844
845 ul.mw-gallery-packed-hover li.gallerybox,
846 ul.mw-gallery-packed-overlay li.gallerybox {
847 position: relative;
848 }
849
850 ul.mw-gallery-packed-hover div.gallerytextwrapper {
851 overflow: hidden;
852 height: 0;
853 }
854
855 ul.mw-gallery-packed-hover li.gallerybox:hover div.gallerytextwrapper,
856 ul.mw-gallery-packed-overlay li.gallerybox div.gallerytextwrapper,
857 ul.mw-gallery-packed-hover li.gallerybox.mw-gallery-focused div.gallerytextwrapper {
858 position: absolute;
859 background: white;
860 background: rgba(255, 255, 255, 0.8);
861 padding: 5px 10px;
862 bottom: 0;
863 left: 0; /* Needed for IE */
864 height: auto;
865 font-weight: bold;
866 margin: 2px; /* correspond to style on div.thumb */
867 }
868
869 ul.mw-gallery-packed-hover,
870 ul.mw-gallery-packed-overlay,
871 ul.mw-gallery-packed {
872 text-align: center;
873 }
874
875 .mw-ajax-loader {
876 /* @embed */
877 background-image: url(images/ajax-loader.gif);
878 background-position: center center;
879 background-repeat: no-repeat;
880 padding: 16px;
881 position: relative;
882 top: -16px;
883 }
884
885 .mw-small-spinner {
886 padding: 10px !important;
887 margin-right: 0.6em;
888 /* @embed */
889 background-image: url(images/spinner.gif);
890 background-position: center center;
891 background-repeat: no-repeat;
892 }
893
894 /* Language specific height correction for titles. Ref Bug 29405 and Bug 30809 */
895 /* Languages like hi or ml require slightly more vertical space to show diacritics properly */
896 h1:lang(anp),
897 h1:lang(as),
898 h1:lang(bh), /* Macrolanguage, used on bh.wikipedia.org, should be removed one day */
899 h1:lang(bho),
900 h1:lang(bn),
901 h1:lang(gu),
902 h1:lang(hi),
903 h1:lang(kn),
904 h1:lang(ks),
905 h1:lang(ml),
906 h1:lang(mr),
907 h1:lang(my),
908 h1:lang(mai),
909 h1:lang(ne),
910 h1:lang(new),
911 h1:lang(or),
912 h1:lang(pa),
913 h1:lang(pi),
914 h1:lang(sa),
915 h1:lang(ta),
916 h1:lang(te) {
917 line-height: 1.6em !important;
918 }
919
920 h2:lang(anp), h3:lang(anp), h4:lang(anp), h5:lang(anp), h6:lang(anp),
921 h2:lang(as), h3:lang(as), h4:lang(as), h5:lang(as), h6:lang(as),
922 h2:lang(bho), h3:lang(bho), h4:lang(bho), h5:lang(bho), h6:lang(bho),
923 h2:lang(bh), h3:lang(bh), h4:lang(bh), h5:lang(bh), h6:lang(bh),
924 h2:lang(bn), h3:lang(bn), h4:lang(bn), h5:lang(bn), h6:lang(bn),
925 h2:lang(gu), h3:lang(gu), h4:lang(gu), h5:lang(gu), h6:lang(gu),
926 h2:lang(hi), h3:lang(hi), h4:lang(hi), h5:lang(hi), h6:lang(hi),
927 h2:lang(kn), h3:lang(kn), h4:lang(kn), h5:lang(kn), h6:lang(kn),
928 h2:lang(ks), h3:lang(ks), h4:lang(ks), h5:lang(ks), h6:lang(ks),
929 h2:lang(ml), h3:lang(ml), h4:lang(ml), h5:lang(ml), h6:lang(ml),
930 h2:lang(mr), h3:lang(mr), h4:lang(mr), h5:lang(mr), h6:lang(mr),
931 h2:lang(my), h3:lang(my), h4:lang(my), h5:lang(my), h6:lang(my),
932 h2:lang(mai), h3:lang(mai), h4:lang(mai), h5:lang(mai), h6:lang(mai),
933 h2:lang(ne), h3:lang(ne), h4:lang(ne), h5:lang(ne), h6:lang(ne),
934 h2:lang(new), h3:lang(new), h4:lang(new), h5:lang(new), h6:lang(new),
935 h2:lang(or), h3:lang(or), h4:lang(or), h5:lang(or), h6:lang(or),
936 h2:lang(pa), h3:lang(pa), h4:lang(pa), h5:lang(pa), h6:lang(pa),
937 h2:lang(pi), h3:lang(pi), h4:lang(pi), h5:lang(pi), h6:lang(pi),
938 h2:lang(sa), h3:lang(sa), h4:lang(sa), h5:lang(sa), h6:lang(sa),
939 h2:lang(ta), h3:lang(ta), h4:lang(ta), h5:lang(ta), h6:lang(ta),
940 h2:lang(te), h3:lang(te), h4:lang(te), h5:lang(te), h6:lang(te) {
941 line-height: 1.2em;
942 }
943
944 /* Localised ordered list numbering for some languages */
945 ol:lang(bcc) li,
946 ol:lang(bqi) li,
947 ol:lang(fa) li,
948 ol:lang(glk) li,
949 ol:lang(kk-arab) li,
950 ol:lang(mzn) li {
951 list-style-type: -moz-persian;
952 list-style-type: persian;
953 }
954
955 ol:lang(ckb) li {
956 list-style-type: -moz-arabic-indic;
957 list-style-type: arabic-indic;
958 }
959
960 ol:lang(hi) li,
961 ol:lang(mr) li {
962 list-style-type: -moz-devanagari;
963 list-style-type: devanagari;
964 }
965
966 ol:lang(as) li,
967 ol:lang(bn) li {
968 list-style-type: -moz-bengali;
969 list-style-type: bengali;
970 }
971
972 ol:lang(or) li {
973 list-style-type: -moz-oriya;
974 list-style-type: oriya;
975 }
976
977 #toc ul, .toc ul {
978 margin: .3em 0;
979 }
980
981 /* Correct directionality when page dir is different from site/user dir */
982 /* @noflip */ .mw-content-ltr .toc ul,
983 .mw-content-ltr #toc ul,
984 .mw-content-rtl .mw-content-ltr .toc ul,
985 .mw-content-rtl .mw-content-ltr #toc ul {
986 text-align: left;
987 }
988
989 /* @noflip */ .mw-content-rtl .toc ul,
990 .mw-content-rtl #toc ul,
991 .mw-content-ltr .mw-content-rtl .toc ul,
992 .mw-content-ltr .mw-content-rtl #toc ul {
993 text-align: right;
994 }
995
996 /* @noflip */ .mw-content-ltr .toc ul ul,
997 .mw-content-ltr #toc ul ul,
998 .mw-content-rtl .mw-content-ltr .toc ul ul,
999 .mw-content-rtl .mw-content-ltr #toc ul ul {
1000 margin: 0 0 0 2em;
1001 }
1002
1003 /* @noflip */ .mw-content-rtl .toc ul ul,
1004 .mw-content-rtl #toc ul ul,
1005 .mw-content-ltr .mw-content-rtl .toc ul ul,
1006 .mw-content-ltr .mw-content-rtl #toc ul ul {
1007 margin: 0 2em 0 0;
1008 }
1009
1010 #toc #toctitle,
1011 .toc #toctitle,
1012 #toc .toctitle,
1013 .toc .toctitle {
1014 direction: ltr;
1015 }
1016
1017 /* tooltip styles */
1018 .mw-help-field-hint {
1019 display: none;
1020 margin-left: 2px;
1021 margin-bottom: -8px;
1022 padding: 0 0 0 15px;
1023 /* @embed */
1024 background-image: url(images/help-question.gif);
1025 background-position: left center;
1026 background-repeat: no-repeat;
1027 cursor: pointer;
1028 font-size: .8em;
1029 text-decoration: underline;
1030 color: #0645ad;
1031 }
1032
1033 .mw-help-field-hint:hover {
1034 /* @embed */
1035 background-image: url(images/help-question-hover.gif);
1036 }
1037
1038 .mw-help-field-data {
1039 display: block;
1040 background-color: #d6f3ff;
1041 padding: 5px 8px 4px 8px;
1042 border: 1px solid #5dc9f4;
1043 margin-left: 20px;
1044 }
1045
1046 #mw-clearyourcache,
1047 #mw-sitecsspreview,
1048 #mw-sitejspreview,
1049 #mw-usercsspreview,
1050 #mw-userjspreview {
1051 direction: ltr;
1052 unicode-bidi: embed;
1053 }
1054
1055 /* Correct user & content directionality when viewing a diff */
1056 .diff-currentversion-title,
1057 .diff {
1058 direction: ltr;
1059 unicode-bidi: embed;
1060 }
1061
1062 /* @noflip */ .diff-contentalign-right td {
1063 direction: rtl;
1064 unicode-bidi: embed;
1065 }
1066
1067 /* @noflip */ .diff-contentalign-left td {
1068 direction: ltr;
1069 unicode-bidi: embed;
1070 }
1071
1072 .diff-multi,
1073 .diff-otitle,
1074 .diff-ntitle,
1075 .diff-lineno {
1076 direction: ltr !important;
1077 unicode-bidi: embed;
1078 }
1079
1080 #mw-revision-info,
1081 #mw-revision-info-current,
1082 #mw-revision-nav {
1083 direction: ltr;
1084 display: inline;
1085 }
1086
1087 /* Images */
1088
1089 /* @noflip */ div.tright,
1090 div.floatright,
1091 table.floatright {
1092 clear: right;
1093 float: right;
1094 }
1095
1096 /* @noflip */ div.tleft,
1097 div.floatleft,
1098 table.floatleft {
1099 float: left;
1100 clear: left;
1101 }
1102
1103 div.floatright,
1104 table.floatright,
1105 div.floatleft,
1106 table.floatleft {
1107 position: relative;
1108 }
1109
1110 /* bug 12205 */
1111 #mw-credits a {
1112 unicode-bidi: embed;
1113 }
1114
1115 /* Accessibility */
1116 .mw-jump,
1117 #jump-to-nav {
1118 overflow: hidden;
1119 height: 0;
1120 zoom: 1; /* http://webaim.org/techniques/skipnav/#iequirk */
1121 }
1122
1123 /* Print footer should be hidden by default in screen. */
1124 .printfooter {
1125 display: none;
1126 }
1127
1128 /* For developers */
1129 .xdebug-error {
1130 position: absolute;
1131 z-index: 99;
1132 }
1133
1134 .mw-editsection,
1135 .toctoggle,
1136 #jump-to-nav {
1137 -moz-user-select: none;
1138 -webkit-user-select: none;
1139 -ms-user-select: none;
1140 user-select: none;
1141 }
1142
1143 /* Display editsection links smaller and next to headings */
1144 .mw-editsection,
1145 .mw-editsection-like {
1146 font-size: small;
1147 font-weight: normal;
1148 margin-left: 1em;
1149 vertical-align: baseline;
1150 /* Reset line-height; headings tend to have it set to larger values */
1151 line-height: 1em;
1152 /* As .mw-editsection is a <span> (inline element), it is treated as part */
1153 /* of the heading content when selecting text by multiple clicks and thus */
1154 /* selected together with heading content, despite the user-select: none; */
1155 /* rule set above. This enforces non-selection without changing the look. */
1156 display: inline-block;
1157 }
1158
1159 /* Correct directionality when page dir is different from site/user dir */
1160 /* @noflip */
1161 .mw-content-ltr .mw-editsection,
1162 .mw-content-rtl .mw-content-ltr .mw-editsection {
1163 margin-left: 1em;
1164 }
1165
1166 /* @noflip */
1167 .mw-content-rtl .mw-editsection,
1168 .mw-content-ltr .mw-content-rtl .mw-editsection {
1169 margin-right: 1em;
1170 }
1171
1172 /* Prevent citations and subscripts from interfering with the line-height */
1173 sup,
1174 sub {
1175 line-height: 1;
1176 }