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