Merge "Document what ParserOutput::setProperty() is for"
[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 /* Default style for semantic tags */
56 abbr,
57 acronym,
58 .explain {
59 border-bottom: 1px dotted;
60 cursor: help;
61 }
62
63 /* Colored watchlist and recent changes numbers */
64 .mw-plusminus-pos {
65 color: #006400; /* dark green */
66 }
67 .mw-plusminus-neg {
68 color: #8b0000; /* dark red */
69 }
70 .mw-plusminus-null {
71 color: #aaa; /* gray */
72 }
73
74 /**
75 * Links to redirects appear italicized on [[Special:AllPages]], [[Special:PrefixIndex]],
76 * [[Special:Watchlist/edit]] and in category listings.
77 */
78 .allpagesredirect,
79 .redirect-in-category,
80 .watchlistredir {
81 font-style: italic;
82 }
83
84 /* Comment and username portions of RC entries */
85 span.comment {
86 font-style: italic;
87 }
88
89 span.changedby {
90 font-size: 95%;
91 }
92
93 /* Math */
94 .texvc {
95 direction: ltr;
96 unicode-bidi: embed;
97 }
98 img.tex {
99 vertical-align: middle;
100 }
101 span.texhtml {
102 font-family: serif;
103 }
104
105 /**
106 * Add a bit of margin space between the preview and the toolbar.
107 * This replaces the ugly <p><br /></p> we used to insert into the page source
108 */
109 #wikiPreview.ontop {
110 margin-bottom: 1em;
111 }
112
113 /* Stop floats from intruding into edit area in previews */
114 #editform,
115 #toolbar,
116 #wpTextbox1 {
117 clear: both;
118 }
119
120 #toolbar img {
121 cursor: pointer;
122 }
123
124 /* Edit section links */
125 /* Correct directionality when page dir is different from site/user dir */
126 /* @noflip */
127 .mw-content-ltr .editsection,
128 .mw-content-rtl .mw-content-ltr .editsection {
129 float: right;
130 margin-left: 5px;
131 }
132 /* @noflip */
133 .mw-content-rtl .editsection,
134 .mw-content-ltr .mw-content-rtl .editsection {
135 float: left;
136 margin-right: 5px;
137 }
138
139 /**
140 * File description page
141 */
142
143 div.mw-filepage-resolutioninfo {
144 font-size: smaller;
145 }
146
147 /**
148 * File histories
149 */
150 h2#filehistory {
151 clear: both;
152 }
153
154 table.filehistory th,
155 table.filehistory td {
156 vertical-align: top;
157 }
158 table.filehistory th {
159 text-align: left;
160 }
161 table.filehistory td.mw-imagepage-filesize,
162 table.filehistory th.mw-imagepage-filesize {
163 white-space: nowrap;
164 }
165
166 table.filehistory td.filehistory-selected {
167 font-weight: bold;
168 }
169
170 /**
171 * Add a checkered background image on hover for file
172 * description pages. (bug 26470)
173 */
174 .filehistory a img,
175 #file img:hover {
176 /* @embed */
177 background: white url(images/Checker-16x16.png) repeat;
178 }
179
180 /**
181 * rev_deleted stuff
182 */
183 li span.deleted,
184 span.history-deleted {
185 text-decoration: line-through;
186 color: #888;
187 font-style: italic;
188 }
189
190 /**
191 * Patrol stuff
192 */
193 .not-patrolled {
194 background-color: #ffa;
195 }
196
197 .unpatrolled {
198 font-weight: bold;
199 color: red;
200 }
201
202 div.patrollink {
203 font-size: 75%;
204 text-align: right;
205 }
206
207 /**
208 * Forms
209 */
210 td.mw-label {
211 text-align: right;
212 }
213 td.mw-input {
214 text-align: left;
215 }
216 td.mw-submit {
217 text-align: left;
218 }
219
220 td.mw-label {
221 vertical-align: top;
222 }
223 .prefsection td.mw-label {
224 width: 20%;
225 }
226 .prefsection table {
227 width: 100%;
228 }
229 td.mw-submit {
230 white-space: nowrap;
231 }
232
233 table.mw-htmlform-nolabel td.mw-label {
234 width: 1px;
235 }
236
237 tr.mw-htmlform-vertical-label td.mw-label {
238 text-align: left !important;
239 }
240
241 .mw-htmlform-invalid-input td.mw-input input {
242 border-color: red;
243 }
244
245 .mw-htmlform-flatlist div.mw-htmlform-flatlist-item {
246 display: inline;
247 margin-right: 1em;
248 white-space: nowrap;
249 }
250
251 input#wpSummary {
252 width: 80%;
253 margin-bottom: 1em;
254 }
255
256 /**
257 * Image captions
258 */
259 /* @noflip */
260 .mw-content-ltr .thumbcaption {
261 text-align: left;
262 }
263 /* @noflip */
264 .mw-content-rtl .thumbcaption {
265 text-align: right;
266 }
267 /* @noflip */
268 .mw-content-ltr .magnify {
269 float: right;
270 }
271 /* @noflip */
272 .mw-content-rtl .magnify {
273 float: left;
274 }
275
276 /**
277 * Categories
278 */
279 #catlinks {
280 /**
281 * Overrides text justification (user preference)
282 * See bug 31990
283 */
284 text-align: left;
285 }
286 .catlinks ul {
287 display: inline;
288 margin: 0;
289 padding: 0;
290 list-style: none;
291 list-style-type: none;
292 list-style-image: none;
293 vertical-align: middle !ie;
294 }
295
296 .catlinks li {
297 display: inline-block;
298 line-height: 1.25em;
299 border-left: 1px solid #AAA;
300 margin: 0.125em 0;
301 padding: 0 0.5em;
302 zoom: 1;
303 display: inline !ie;
304 }
305
306 .catlinks li:first-child {
307 padding-left: 0.25em;
308 border-left: none;
309 }
310 /**
311 * Hidden categories
312 */
313 .mw-hidden-cats-hidden {
314 display: none;
315 }
316 .catlinks-allhidden {
317 display: none;
318 }
319
320 /* Convenience links to edit block, delete and protect reasons */
321 p.mw-ipb-conveniencelinks,
322 p.mw-protect-editreasons,
323 p.mw-filedelete-editreasons,
324 p.mw-delete-editreasons,
325 p.mw-revdel-editreasons {
326 font-size: 90%;
327 text-align: right;
328 }
329
330 /**
331 * OpenSearch ajax suggestions
332 */
333 .os-suggest {
334 overflow: auto;
335 overflow-x: hidden;
336 position: absolute;
337 top: 0;
338 left: 0;
339 width: 0;
340 background-color: white;
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 color: black;
361 padding: 2px;
362 }
363 .os-suggest-result-hl,
364 .os-suggest-result-hl-webkit {
365 background-color: #4C59A6;
366 color: white;
367 }
368
369 .os-suggest-toggle {
370 position: relative;
371 left: 1ex;
372 font-size: 65%;
373 }
374 .os-suggest-toggle-def {
375 position: absolute;
376 top: 0;
377 left: 0;
378 font-size: 65%;
379 visibility: hidden;
380 }
381
382 /* Page history styling */
383
384 /* The auto-generated edit comments */
385 .autocomment {
386 color: gray;
387 }
388 #pagehistory .history-user {
389 margin-left: 0.4em;
390 margin-right: 0.2em;
391 }
392 #pagehistory span.minor {
393 font-weight: bold;
394 }
395 #pagehistory li {
396 border: 1px solid white;
397 }
398 #pagehistory li.selected {
399 background-color: #f9f9f9;
400 border: 1px dashed #aaa;
401 }
402
403 .mw-history-revisiondelete-button, #mw-fileduplicatesearch-icon {
404 float: right;
405 }
406
407 /** Generic minor/bot/newpage styling (recent changes) */
408 .newpage,
409 .minoredit,
410 .botedit {
411 font-weight: bold;
412 }
413
414 #shared-image-dup,
415 #shared-image-conflict {
416 font-style: italic;
417 }
418
419 /**
420 * Recreating deleted page warning
421 * Reupload file warning
422 * Page protection warning
423 * incl. log entries for these warnings
424 */
425 div.mw-warning-with-logexcerpt {
426 padding: 3px;
427 margin-bottom: 3px;
428 border: 2px solid #2F6FAB;
429 clear: both;
430 }
431 div.mw-warning-with-logexcerpt ul li {
432 font-size: 90%;
433 }
434
435 /* (show/hide) revision deletion links */
436 span.mw-revdelundel-link,
437 strong.mw-revdelundel-link {
438 font-size: 90%;
439 }
440 span.mw-revdelundel-hidden,
441 input.mw-revdelundel-hidden {
442 visibility: hidden;
443 }
444
445 td.mw-revdel-checkbox,
446 th.mw-revdel-checkbox {
447 padding-right: 10px;
448 text-align: center;
449 }
450
451 /* red links; see bug 36276 */
452 a.new {
453 color: #BA0000;
454 }
455
456 /* feed links */
457 a.feedlink {
458 /* @embed */
459 background: url(images/feed-icon.png) center left no-repeat;
460 padding-left: 16px;
461 }
462
463 /* Plainlinks - this can be used to switch
464 * off special external link styling */
465 .plainlinks a {
466 background: none !important;
467 padding: 0 !important;
468 }
469 /* External URLs should always be treated as LTR (bug 4330) */
470 /* @noflip */ .rtl a.external.free,
471 .rtl a.external.autonumber {
472 direction: ltr;
473 unicode-bidi: embed;
474 }
475
476 /**
477 * wikitable class for skinning normal tables
478 * keep in sync with commonPrint.css
479 */
480 table.wikitable {
481 margin: 1em 0;
482 background-color: #f9f9f9;
483 border: 1px #aaa solid;
484 border-collapse: collapse;
485 color: black;
486 }
487 table.wikitable > tr > th,
488 table.wikitable > tr > td,
489 table.wikitable > * > tr > th,
490 table.wikitable > * > tr > td {
491 border: 1px #aaa solid;
492 padding: 0.2em;
493 }
494 table.wikitable > tr > th,
495 table.wikitable > * > tr > th {
496 background-color: #f2f2f2;
497 text-align: center;
498 }
499 table.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.6em;
722 padding: 0;
723 }
724 .mw-content-rtl ul,
725 .mw-content-ltr .mw-content-rtl ul {
726 /* @noflip */
727 margin: 0.3em 1.6em 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 /* @noflip */
743 .mw-content-ltr dd,
744 .mw-content-rtl .mw-content-ltr dd {
745 margin-left: 1.6em;
746 margin-right: 0;
747 }
748 /* @noflip */
749 .mw-content-rtl dd,
750 .mw-content-ltr .mw-content-rtl dd {
751 margin-right: 1.6em;
752 margin-left: 0;
753 }
754
755 /* Galleries */
756 /* These display attributes look nonsensical, but are needed to support IE and FF2 */
757 /* Don't forget to update commonPrint.css */
758 li.gallerybox {
759 vertical-align: top;
760 display: -moz-inline-box;
761 display: inline-block;
762 }
763
764 ul.gallery,
765 li.gallerybox {
766 zoom: 1;
767 *display: inline;
768 }
769
770 ul.gallery {
771 margin: 2px;
772 padding: 2px;
773 display: block;
774 }
775
776 li.gallerycaption {
777 font-weight: bold;
778 text-align: center;
779 display: block;
780 word-wrap: break-word;
781 }
782
783 li.gallerybox div.thumb {
784 text-align: center;
785 border: 1px solid #ccc;
786 background-color: #f9f9f9;
787 margin: 2px;
788 }
789
790 li.gallerybox div.thumb img {
791 display: block;
792 margin: 0 auto;
793 }
794
795 div.gallerytext {
796 overflow: hidden;
797 font-size: 94%;
798 padding: 2px 4px;
799 word-wrap: break-word;
800 }
801
802 .mw-ajax-loader {
803 /* @embed */
804 background-image: url(images/ajax-loader.gif);
805 background-position: center center;
806 background-repeat: no-repeat;
807 padding: 16px;
808 position: relative;
809 top: -16px;
810 }
811
812 .mw-small-spinner {
813 padding: 10px !important;
814 margin-right: 0.6em;
815 /* @embed */
816 background-image: url(images/spinner.gif);
817 background-position: center center;
818 background-repeat: no-repeat;
819 }
820
821 /* Language specific height correction for titles. Ref Bug 29405 and Bug 30809 */
822 /* Languages like hi or ml require slightly more vertical space to show diacritics properly */
823 h1:lang(as),
824 h1:lang(bh), /* Macrolanguage, used on bh.wikipedia.org, should be removed one day */
825 h1:lang(bho),
826 h1:lang(bn),
827 h1:lang(gu),
828 h1:lang(hi),
829 h1:lang(kn),
830 h1:lang(ml),
831 h1:lang(mr),
832 h1:lang(my),
833 h1:lang(or),
834 h1:lang(pa),
835 h1:lang(sa),
836 h1:lang(ta),
837 h1:lang(te) {
838 line-height: 1.6em !important;
839 }
840 h2:lang(as), h3:lang(as), h4:lang(as), h5:lang(as), h6:lang(as),
841 h2:lang(bho), h3:lang(bho), h4:lang(bho), h5:lang(bho), h6:lang(bho),
842 h2:lang(bh), h3:lang(bh), h4:lang(bh), h5:lang(bh), h6:lang(bh),
843 h2:lang(bn), h3:lang(bn), h4:lang(bn), h5:lang(bn), h6:lang(bn),
844 h2:lang(gu), h3:lang(gu), h4:lang(gu), h5:lang(gu), h6:lang(gu),
845 h2:lang(hi), h3:lang(hi), h4:lang(hi), h5:lang(hi), h6:lang(hi),
846 h2:lang(kn), h3:lang(kn), h4:lang(kn), h5:lang(kn), h6:lang(kn),
847 h2:lang(ml), h3:lang(ml), h4:lang(ml), h5:lang(ml), h6:lang(ml),
848 h2:lang(mr), h3:lang(mr), h4:lang(mr), h5:lang(mr), h6:lang(mr),
849 h2:lang(my), h3:lang(my), h4:lang(my), h5:lang(my), h6:lang(my),
850 h2:lang(or), h3:lang(or), h4:lang(or), h5:lang(or), h6:lang(or),
851 h2:lang(pa), h3:lang(pa), h4:lang(pa), h5:lang(pa), h6:lang(pa),
852 h2:lang(sa), h3:lang(sa), h4:lang(sa), h5:lang(sa), h6:lang(sa),
853 h2:lang(ta), h3:lang(ta), h4:lang(ta), h5:lang(ta), h6:lang(ta),
854 h2:lang(te), h3:lang(te), h4:lang(te), h5:lang(te), h6:lang(te) {
855 line-height: 1.2em;
856 }
857
858 /* Localised ordered list numbering for some languages */
859 ol:lang(bcc) li,
860 ol:lang(bqi) li,
861 ol:lang(fa) li,
862 ol:lang(glk) li,
863 ol:lang(kk-arab) li,
864 ol:lang(mzn) li {
865 list-style-type: -moz-persian;
866 list-style-type: persian;
867 }
868
869 ol:lang(ckb) li {
870 list-style-type: -moz-arabic-indic;
871 list-style-type: arabic-indic;
872 }
873
874 ol:lang(hi) li,
875 ol:lang(mr) li {
876 list-style-type: -moz-devanagari;
877 list-style-type: devanagari;
878 }
879
880 ol:lang(as) li,
881 ol:lang(bn) li {
882 list-style-type: -moz-bengali;
883 list-style-type: bengali;
884 }
885
886 ol:lang(or) li {
887 list-style-type: -moz-oriya;
888 list-style-type: oriya;
889 }
890
891 #toc ul, .toc ul {
892 margin: .3em 0;
893 }
894
895 /* Correct directionality when page dir is different from site/user dir */
896 /* @noflip */ .mw-content-ltr .toc ul,
897 .mw-content-ltr #toc ul,
898 .mw-content-rtl .mw-content-ltr .toc ul,
899 .mw-content-rtl .mw-content-ltr #toc ul {
900 text-align: left;
901 }
902 /* @noflip */ .mw-content-rtl .toc ul,
903 .mw-content-rtl #toc ul,
904 .mw-content-ltr .mw-content-rtl .toc ul,
905 .mw-content-ltr .mw-content-rtl #toc ul {
906 text-align: right;
907 }
908 /* @noflip */ .mw-content-ltr .toc ul ul,
909 .mw-content-ltr #toc ul ul,
910 .mw-content-rtl .mw-content-ltr .toc ul ul,
911 .mw-content-rtl .mw-content-ltr #toc ul ul {
912 margin: 0 0 0 2em;
913 }
914 /* @noflip */ .mw-content-rtl .toc ul ul,
915 .mw-content-rtl #toc ul ul,
916 .mw-content-ltr .mw-content-rtl .toc ul ul,
917 .mw-content-ltr .mw-content-rtl #toc ul ul {
918 margin: 0 2em 0 0;
919 }
920
921 #toc #toctitle,
922 .toc #toctitle,
923 #toc .toctitle,
924 .toc .toctitle {
925 direction: ltr;
926 }
927
928 /* tooltip styles */
929 .mw-help-field-hint {
930 display: none;
931 margin-left: 2px;
932 margin-bottom: -8px;
933 padding: 0 0 0 15px;
934 /* @embed */
935 background-image: url('images/help-question.gif');
936 background-position: left center;
937 background-repeat: no-repeat;
938 cursor: pointer;
939 font-size: .8em;
940 text-decoration: underline;
941 color: #0645ad;
942 }
943 .mw-help-field-hint:hover {
944 /* @embed */
945 background-image: url('images/help-question-hover.gif');
946 }
947 .mw-help-field-data {
948 display: block;
949 background-color: #d6f3ff;
950 padding:5px 8px 4px 8px;
951 border: 1px solid #5dc9f4;
952 margin-left: 20px;
953 }
954 .tipsy {
955 padding: 5px 5px 10px;
956 font-size: 12px;
957 position: absolute;
958 z-index: 100000;
959 overflow: visible;
960 }
961 .tipsy-inner {
962 padding: 5px 8px 4px 8px;
963 background-color: #d6f3ff;
964 color: black;
965 border: 1px solid #5dc9f4;
966 max-width: 300px;
967 text-align: left;
968 }
969 .tipsy-arrow {
970 position: absolute;
971 /* @embed */
972 background: url(images/tipsy-arrow.gif) no-repeat top left;
973 width: 13px;
974 height: 13px;
975 }
976 .tipsy-se .tipsy-arrow {
977 bottom: -2px;
978 right: 10px;
979 background-position: 0% 100%;
980 }
981
982 #mw-clearyourcache,
983 #mw-sitecsspreview,
984 #mw-sitejspreview,
985 #mw-usercsspreview,
986 #mw-userjspreview {
987 direction: ltr;
988 unicode-bidi: embed;
989 }
990
991 /* Correct user & content directionality when viewing a diff */
992 .diff-currentversion-title,
993 .diff {
994 direction: ltr;
995 unicode-bidi: embed;
996 }
997 /* @noflip */ .diff-contentalign-right td {
998 direction: rtl;
999 unicode-bidi: embed;
1000 }
1001 /* @noflip */ .diff-contentalign-left td {
1002 direction: ltr;
1003 unicode-bidi: embed;
1004 }
1005 .diff-otitle,
1006 .diff-ntitle,
1007 .diff-lineno {
1008 direction: ltr !important;
1009 unicode-bidi: embed;
1010 }
1011
1012 #mw-revision-info,
1013 #mw-revision-info-current,
1014 #mw-revision-nav {
1015 direction: ltr;
1016 display: inline;
1017 }
1018
1019 /* Images */
1020
1021 /* @noflip */ div.tright,
1022 div.floatright,
1023 table.floatright {
1024 clear: right;
1025 float: right;
1026 }
1027 /* @noflip */ div.tleft,
1028 div.floatleft,
1029 table.floatleft {
1030 float: left;
1031 clear: left;
1032 }
1033 div.floatright,
1034 table.floatright,
1035 div.floatleft,
1036 table.floatleft {
1037 position: relative;
1038 }
1039
1040 /* bug 12205 */
1041 #mw-credits a {
1042 unicode-bidi: embed;
1043 }
1044
1045 /* Accessibility */
1046 .mw-jump,
1047 #jump-to-nav {
1048 overflow: hidden;
1049 height: 0;
1050 zoom: 1; /* http://webaim.org/techniques/skipnav/#iequirk */
1051 }
1052
1053 /* Print footer should be hidden by default in screen. */
1054 .printfooter {
1055 display: none;
1056 }
1057
1058 /* For developpers */
1059 .xdebug-error {
1060 position: absolute;
1061 z-index: 99;
1062 }
1063
1064 .editsection, .toctoggle {
1065 -moz-user-select: none;
1066 -webkit-user-select: none;
1067 -ms-user-select: none;
1068 user-select: none;
1069 }