make xdebug messages above everything
[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 black;
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 #toolbar img {
120 cursor: pointer;
121 }
122 div#mw-js-message {
123 margin: 1em 5%;
124 padding: 0.5em 2.5%;
125 border: solid 1px #ddd;
126 background-color: #fcfcfc;
127 }
128
129 /* Edit section links */
130 .editsection {
131 float: right;
132 margin-left: 5px;
133 }
134 /* Correct directionality when page dir is different from site/user dir */
135 .mw-content-ltr .editsection,
136 .mw-content-rtl .mw-content-ltr .editsection {
137 /* @noflip */
138 float: right;
139 }
140 .mw-content-rtl .editsection,
141 .mw-content-ltr .mw-content-rtl .editsection {
142 /* @noflip */
143 float: left;
144 }
145
146 /**
147 * File description page
148 */
149
150 div.mw-filepage-resolutioninfo {
151 font-size: smaller;
152 }
153
154 /**
155 * File histories
156 */
157 h2#filehistory {
158 clear: both;
159 }
160
161 table.filehistory th,
162 table.filehistory td {
163 vertical-align: top;
164 }
165 table.filehistory th {
166 text-align: left;
167 }
168 table.filehistory td.mw-imagepage-filesize,
169 table.filehistory th.mw-imagepage-filesize {
170 white-space: nowrap;
171 }
172
173 table.filehistory td.filehistory-selected {
174 font-weight: bold;
175 }
176
177 /**
178 * Add a checkered background image on hover for file
179 * description pages. (bug 26470)
180 */
181 .filehistory a img,
182 #file img:hover {
183 /* @embed */
184 background: white url(images/Checker-16x16.png) repeat;
185 }
186
187 /**
188 * rev_deleted stuff
189 */
190 li span.deleted,
191 span.history-deleted {
192 text-decoration: line-through;
193 color: #888;
194 font-style: italic;
195 }
196
197 /**
198 * Patrol stuff
199 */
200 .not-patrolled {
201 background-color: #ffa;
202 }
203
204 .unpatrolled {
205 font-weight: bold;
206 color: red;
207 }
208
209 div.patrollink {
210 font-size: 75%;
211 text-align: right;
212 }
213
214 /**
215 * Forms
216 */
217 td.mw-label {
218 text-align: right;
219 }
220 td.mw-input {
221 text-align: left;
222 }
223 td.mw-submit {
224 text-align: left;
225 }
226
227 td.mw-label {
228 vertical-align: top;
229 }
230 .prefsection td.mw-label {
231 width: 20%;
232 }
233 .prefsection table {
234 width: 100%;
235 }
236 td.mw-submit {
237 white-space: nowrap;
238 }
239
240 table.mw-htmlform-nolabel td.mw-label {
241 width: 0 !important;
242 }
243
244 tr.mw-htmlform-vertical-label td.mw-label {
245 text-align: left !important;
246 }
247
248 .mw-htmlform-invalid-input td.mw-input input {
249 border-color: red;
250 }
251 .mw-htmlform-radio-flatlist div.mw-htmlform-radio-item,
252 .mw-htmlform-multiselect-flatlist div.mw-htmlform-multiselect-item {
253 display: inline;
254 margin-right: 1em;
255 white-space: nowrap;
256 }
257
258 input#wpSummary {
259 width: 80%;
260 }
261
262 /**
263 * Image captions
264 */
265 .thumbcaption {
266 text-align: left;
267 }
268 .magnify {
269 float: right;
270 }
271
272 /**
273 * Categories
274 */
275 #catlinks {
276 /**
277 * Overrides text justification (user preference)
278 * See bug 31990
279 */
280 text-align: left;
281 }
282 .catlinks ul {
283 display: inline;
284 margin: 0;
285 padding: 0;
286 list-style: none;
287 list-style-type: none;
288 list-style-image: none;
289 vertical-align: middle !ie;
290 }
291
292 .catlinks li {
293 display: inline-block;
294 line-height: 1.25em;
295 border-left: 1px solid #AAA;
296 margin: 0.125em 0;
297 padding: 0 0.5em;
298 zoom: 1;
299 display: inline !ie;
300 }
301
302 .catlinks li:first-child {
303 padding-left: 0.25em;
304 border-left: none;
305 }
306 /**
307 * Hidden categories
308 */
309 .mw-hidden-cats-hidden {
310 display: none;
311 }
312 .catlinks-allhidden {
313 display: none;
314 }
315
316 /* Convenience links to edit block, delete and protect reasons */
317 p.mw-ipb-conveniencelinks,
318 p.mw-protect-editreasons,
319 p.mw-filedelete-editreasons,
320 p.mw-delete-editreasons,
321 p.mw-revdel-editreasons {
322 font-size: 90%;
323 text-align: right;
324 }
325
326 /**
327 * OpenSearch ajax suggestions
328 */
329 .os-suggest {
330 overflow: auto;
331 overflow-x: hidden;
332 position: absolute;
333 top: 0;
334 left: 0;
335 width: 0;
336 background-color: white;
337 border-style: solid;
338 border-color: #AAAAAA;
339 border-width: 1px;
340 z-index:99;
341 font-size:95%;
342 }
343
344 table.os-suggest-results {
345 font-size: 95%;
346 cursor: pointer;
347 border: 0;
348 border-collapse: collapse;
349 width: 100%;
350 }
351
352 .os-suggest-result,
353 .os-suggest-result-hl {
354 white-space: nowrap;
355 background-color: white;
356 color: black;
357 padding: 2px;
358 }
359 .os-suggest-result-hl,
360 .os-suggest-result-hl-webkit {
361 background-color: #4C59A6;
362 color: white;
363 }
364
365 .os-suggest-toggle {
366 position: relative;
367 left: 1ex;
368 font-size: 65%;
369 }
370 .os-suggest-toggle-def {
371 position: absolute;
372 top: 0;
373 left: 0;
374 font-size: 65%;
375 visibility: hidden;
376 }
377
378 /* Page history styling */
379
380 /* The auto-generated edit comments */
381 .autocomment {
382 color: gray;
383 }
384 #pagehistory .history-user {
385 margin-left: 0.4em;
386 margin-right: 0.2em;
387 }
388 #pagehistory span.minor {
389 font-weight: bold;
390 }
391 #pagehistory li {
392 border: 1px solid white;
393 }
394 #pagehistory li.selected {
395 background-color: #f9f9f9;
396 border: 1px dashed #aaa;
397 }
398
399 .mw-history-revisiondelete-button, #mw-fileduplicatesearch-icon {
400 float: right;
401 }
402
403 /** Generic minor/bot/newpage styling (recent changes) */
404 .newpage,
405 .minoredit,
406 .botedit {
407 font-weight: bold;
408 }
409
410 #shared-image-dup,
411 #shared-image-conflict {
412 font-style: italic;
413 }
414
415 /**
416 * Recreating deleted page warning
417 * Reupload file warning
418 * Page protection warning
419 * incl. log entries for these warnings
420 */
421 div.mw-warning-with-logexcerpt {
422 padding: 3px;
423 margin-bottom: 3px;
424 border: 2px solid #2F6FAB;
425 clear: both;
426 }
427 div.mw-warning-with-logexcerpt ul li {
428 font-size: 90%;
429 }
430
431 /* (show/hide) revision deletion links */
432 span.mw-revdelundel-link,
433 strong.mw-revdelundel-link {
434 font-size: 90%;
435 }
436 span.mw-revdelundel-hidden,
437 input.mw-revdelundel-hidden {
438 visibility: hidden;
439 }
440
441 td.mw-revdel-checkbox,
442 th.mw-revdel-checkbox {
443 padding-right: 10px;
444 text-align: center;
445 }
446
447 /* feed links */
448 a.feedlink {
449 /* @embed */
450 background: url(images/feed-icon.png) center left no-repeat;
451 padding-left: 16px;
452 }
453
454 /* Plainlinks - this can be used to switch
455 * off special external link styling */
456 .plainlinks a {
457 background: none !important;
458 padding: 0 !important;
459 }
460 /* External URLs should always be treated as LTR (bug 4330) */
461 /* @noflip */ .rtl a.external.free,
462 .rtl a.external.autonumber {
463 direction: ltr;
464 unicode-bidi: embed;
465 }
466
467 /**
468 * wikitable class for skinning normal tables
469 * keep in sync with commonPrint.css
470 */
471 table.wikitable {
472 margin: 1em 1em 1em 0;
473 background-color: #f9f9f9;
474 border: 1px #aaa solid;
475 border-collapse: collapse;
476 color: black;
477 }
478 .wikitable th,
479 .wikitable td {
480 border: 1px #aaa solid;
481 padding: 0.2em;
482 }
483 .wikitable th {
484 background-color: #f2f2f2;
485 text-align: center;
486 }
487 .wikitable caption {
488 font-weight: bold;
489 }
490
491 /* hide initially collapsed collapsable tables */
492 table.collapsed tr.collapsable {
493 display: none;
494 }
495
496 /* success and error messages */
497 .success {
498 color: green;
499 font-size: larger;
500 }
501 .warning {
502 color: #FFA500; /* orange */
503 font-size: larger;
504 }
505 .error {
506 color: red;
507 font-size: larger;
508 }
509 .errorbox,
510 .warningbox,
511 .successbox {
512 font-size: larger;
513 border: 2px solid;
514 padding: .5em 1em;
515 float: left;
516 margin-bottom: 2em;
517 color: #000;
518 }
519 .errorbox {
520 border-color: red;
521 background-color: #fff2f2;
522 }
523 .warningbox {
524 border-color: #FF8C00; /* darkorange */
525 background-color: #FFFFC0;
526 }
527 .successbox {
528 border-color: green;
529 background-color: #dfd;
530 }
531 .errorbox h2,
532 .warningbox h2,
533 .successbox h2 {
534 font-size: 1em;
535 font-weight: bold;
536 display: inline;
537 margin: 0 .5em 0 0;
538 border: none;
539 }
540
541 /* general info/warning box for SP */
542 .mw-infobox {
543 border: 2px solid #ff7f00;
544 margin: 0.5em;
545 clear: left;
546 overflow: hidden;
547 }
548
549 .mw-infobox-left {
550 margin: 7px;
551 float: left;
552 width: 35px;
553 }
554
555 .mw-infobox-right {
556 margin: 0.5em 0.5em 0.5em 49px;
557 }
558
559 /* Note on preview page */
560 .previewnote {
561 color: #c00;
562 margin-bottom: 1em;
563 }
564
565 .previewnote p {
566 text-indent: 3em;
567 margin: 0.8em 0;
568 }
569
570 .visualClear {
571 clear: both;
572 }
573
574 #mw_trackbacks {
575 border: solid 1px #bbbbff;
576 background-color: #eeeeff;
577 padding: 0.2em;
578 }
579
580 /**
581 * Data table style
582 *
583 * Transparent table with suddle borders
584 * and blue row-highlighting.
585 */
586 .mw-datatable {
587 border-collapse: collapse;
588 }
589 .mw-datatable,
590 .mw-datatable td,
591 .mw-datatable th {
592 border: 1px solid #aaaaaa;
593 padding: 0 0.15em 0 0.15em;
594 }
595 .mw-datatable th {
596 background-color: #ddddff;
597 }
598 .mw-datatable td {
599 background-color: #ffffff;
600 }
601 .mw-datatable tr:hover td {
602 background-color: #eeeeff;
603 }
604
605
606 /**
607 * TablePager tables generated by the TablePager PHP class
608 * in MediaWiki (e.g. Special:ListFiles).
609 */
610 .TablePager {
611 min-width: 80%;
612 }
613 .TablePager_nav {
614 margin: 0 auto;
615 }
616 .TablePager_nav td {
617 padding: 3px;
618 text-align: center;
619 }
620 .TablePager_nav a {
621 text-decoration: none;
622 }
623
624 .imagelist td,
625 .imagelist th {
626 white-space: nowrap;
627 }
628 .imagelist .TablePager_col_links {
629 background-color: #eeeeff;
630 }
631 .imagelist .TablePager_col_img_description {
632 white-space: normal;
633 }
634 .imagelist th.TablePager_sort {
635 background-color: #ccccff;
636 }
637
638 /* filetoc */
639 ul#filetoc {
640 text-align: center;
641 border: 1px solid #aaaaaa;
642 background-color: #f9f9f9;
643 padding: 5px;
644 font-size: 95%;
645 margin-bottom: 0.5em;
646 margin-left: 0;
647 margin-right: 0;
648 }
649
650 #filetoc li {
651 display: inline;
652 list-style-type: none;
653 padding-right: 2em;
654 }
655
656 /* Classes for EXIF data display */
657 table.mw_metadata {
658 font-size: 0.8em;
659 margin-left: 0.5em;
660 margin-bottom: 0.5em;
661 width: 400px;
662 }
663
664 table.mw_metadata caption {
665 font-weight: bold;
666 }
667
668 table.mw_metadata th {
669 font-weight: normal;
670 }
671
672 table.mw_metadata td {
673 padding: 0.1em;
674 }
675
676 table.mw_metadata {
677 border: none;
678 border-collapse: collapse;
679 }
680
681 table.mw_metadata td,
682 table.mw_metadata th {
683 text-align: center;
684 border: 1px solid #aaaaaa;
685 padding-left: 5px;
686 padding-right: 5px;
687 }
688
689 table.mw_metadata th {
690 background-color: #f9f9f9;
691 }
692
693 table.mw_metadata td {
694 background-color: #fcfcfc;
695 }
696
697 table.mw_metadata ul.metadata-langlist {
698 list-style-type: none;
699 list-style-image: none;
700 padding-right: 5px;
701 padding-left: 5px;
702 margin: 0;
703 }
704
705 /* Correct directionality when page dir is different from site/user dir */
706 .mw-content-ltr ul,
707 .mw-content-rtl .mw-content-ltr ul {
708 /* @noflip */
709 margin: 0.3em 0 0 1.5em;
710 padding: 0;
711 }
712 .mw-content-rtl ul,
713 .mw-content-ltr .mw-content-rtl ul {
714 /* @noflip */
715 margin: 0.3em 1.5em 0 0;
716 padding: 0;
717 }
718 .mw-content-ltr ol,
719 .mw-content-rtl .mw-content-ltr ol {
720 /* @noflip */
721 margin: 0.3em 0 0 3.2em;
722 padding: 0;
723 }
724 .mw-content-rtl ol,
725 .mw-content-ltr .mw-content-rtl ol {
726 /* @noflip */
727 margin: 0.3em 3.2em 0 0;
728 padding: 0;
729 }
730 /* @noflip */
731 .mw-content-ltr dd,
732 .mw-content-rtl .mw-content-ltr dd {
733 margin-left: 1.6em;
734 margin-right: 0;
735 }
736 /* @noflip */
737 .mw-content-rtl dd,
738 .mw-content-ltr .mw-content-rtl dd {
739 margin-right: 1.6em;
740 margin-left: 0;
741 }
742
743 /* Galleries */
744 /* These display attributes look nonsensical, but are needed to support IE and FF2 */
745 /* Don't forget to update commonPrint.css */
746 li.gallerybox {
747 vertical-align: top;
748 border: solid 2px white;
749 display: -moz-inline-box;
750 display: inline-block;
751 }
752
753 ul.gallery,
754 li.gallerybox {
755 zoom: 1;
756 *display: inline;
757 }
758
759 ul.gallery {
760 margin: 2px;
761 padding: 2px;
762 display: block;
763 }
764
765 li.gallerycaption {
766 font-weight: bold;
767 text-align: center;
768 display: block;
769 word-wrap: break-word;
770 }
771
772 li.gallerybox div.thumb {
773 text-align: center;
774 border: 1px solid #ccc;
775 background-color: #f9f9f9;
776 margin: 2px;
777 }
778
779 li.gallerybox div.thumb img {
780 display: block;
781 margin: 0 auto;
782 }
783
784 div.gallerytext {
785 overflow: hidden;
786 font-size: 94%;
787 padding: 2px 4px;
788 word-wrap: break-word;
789 }
790
791 .mw-ajax-loader {
792 /* @embed */
793 background-image: url(images/ajax-loader.gif);
794 background-position: center center;
795 background-repeat: no-repeat;
796 padding: 16px;
797 position: relative;
798 top: -16px;
799 }
800
801 .mw-small-spinner {
802 padding: 10px !important;
803 margin-right: 0.6em;
804 /* @embed */
805 background-image: url(images/spinner.gif);
806 background-position: center center;
807 background-repeat: no-repeat;
808 }
809
810 /* Language specific height correction for titles. Ref Bug 29405 and Bug 30809 */
811 /* Languages like hi or ml require slightly more vertical space to show diacritics properly */
812 h1:lang(as),
813 h1:lang(bn),
814 h1:lang(gu),
815 h1:lang(hi),
816 h1:lang(kn),
817 h1:lang(ml),
818 h1:lang(mr),
819 h1:lang(or),
820 h1:lang(pa),
821 h1:lang(sa),
822 h1:lang(ta),
823 h1:lang(te) {
824 line-height: 1.5em;
825 }
826 h2:lang(as), h3:lang(as), h4:lang(as), h5:lang(as), h6:lang(as),
827 h2:lang(bn), h3:lang(bn), h4:lang(bn), h5:lang(bn), h6:lang(bn),
828 h2:lang(gu), h3:lang(gu), h4:lang(gu), h5:lang(gu), h6:lang(gu),
829 h2:lang(hi), h3:lang(hi), h4:lang(hi), h5:lang(hi), h6:lang(hi),
830 h2:lang(kn), h3:lang(kn), h4:lang(kn), h5:lang(kn), h6:lang(kn),
831 h2:lang(ml), h3:lang(ml), h4:lang(ml), h5:lang(ml), h6:lang(ml),
832 h2:lang(mr), h3:lang(mr), h4:lang(mr), h5:lang(mr), h6:lang(mr),
833 h2:lang(or), h3:lang(or), h4:lang(or), h5:lang(or), h6:lang(or),
834 h2:lang(pa), h3:lang(pa), h4:lang(pa), h5:lang(pa), h6:lang(pa),
835 h2:lang(sa), h3:lang(sa), h4:lang(sa), h5:lang(sa), h6:lang(sa),
836 h2:lang(ta), h3:lang(ta), h4:lang(ta), h5:lang(ta), h6:lang(ta),
837 h2:lang(te), h3:lang(te), h4:lang(te), h5:lang(te), h6:lang(te) {
838 line-height: 1.2em;
839 }
840
841 /* Localised ordered list numbering for some languages */
842 ol:lang(bcc) li,
843 ol:lang(bqi) li,
844 ol:lang(fa) li,
845 ol:lang(glk) li,
846 ol:lang(kk-arab) li,
847 ol:lang(mzn) li {
848 list-style-type: -moz-persian;
849 list-style-type: persian;
850 }
851
852 ol:lang(ckb) li {
853 list-style-type: -moz-arabic-indic;
854 list-style-type: arabic-indic;
855 }
856
857 ol:lang(as) li,
858 ol:lang(bn) li {
859 list-style-type: -moz-bengali;
860 list-style-type: bengali;
861 }
862
863 ol:lang(or) li {
864 list-style-type: -moz-oriya;
865 list-style-type: oriya;
866 }
867
868 #toc ul, .toc ul {
869 margin: .3em 0;
870 }
871
872 /* Correct directionality when page dir is different from site/user dir */
873 /* @noflip */ .mw-content-ltr .toc ul,
874 .mw-content-ltr #toc ul,
875 .mw-content-rtl .mw-content-ltr .toc ul,
876 .mw-content-rtl .mw-content-ltr #toc ul {
877 text-align: left;
878 }
879 /* @noflip */ .mw-content-rtl .toc ul,
880 .mw-content-rtl #toc ul,
881 .mw-content-ltr .mw-content-rtl .toc ul,
882 .mw-content-ltr .mw-content-rtl #toc ul {
883 text-align: right;
884 }
885 /* @noflip */ .mw-content-ltr .toc ul ul,
886 .mw-content-ltr #toc ul ul,
887 .mw-content-rtl .mw-content-ltr .toc ul ul,
888 .mw-content-rtl .mw-content-ltr #toc ul ul {
889 margin: 0 0 0 2em;
890 }
891 /* @noflip */ .mw-content-rtl .toc ul ul,
892 .mw-content-rtl #toc ul ul,
893 .mw-content-ltr .mw-content-rtl .toc ul ul,
894 .mw-content-ltr .mw-content-rtl #toc ul ul {
895 margin: 0 2em 0 0;
896 }
897
898 #toc #toctitle,
899 .toc #toctitle,
900 #toc .toctitle,
901 .toc .toctitle {
902 direction: ltr;
903 }
904
905 /* tooltip styles */
906 .mw-help-field-hint {
907 display: none;
908 margin-left: 2px;
909 margin-bottom: -8px;
910 padding: 0 0 0 15px;
911 /* @embed */
912 background-image: url('images/help-question.gif');
913 background-position: left center;
914 background-repeat: no-repeat;
915 cursor: pointer;
916 font-size: .8em;
917 text-decoration: underline;
918 color: #0645ad;
919 }
920 .mw-help-field-hint:hover {
921 /* @embed */
922 background-image: url('images/help-question-hover.gif');
923 }
924 .mw-help-field-data {
925 display: block;
926 background-color: #d6f3ff;
927 padding:5px 8px 4px 8px;
928 border: 1px solid #5dc9f4;
929 margin-left: 20px;
930 }
931 .tipsy {
932 padding: 5px 5px 10px;
933 font-size: 12px;
934 position: absolute;
935 z-index: 100000;
936 overflow: visible;
937 }
938 .tipsy-inner {
939 padding: 5px 8px 4px 8px;
940 background-color: #d6f3ff;
941 color: black;
942 border: 1px solid #5dc9f4;
943 max-width: 300px;
944 text-align: left;
945 }
946 .tipsy-arrow {
947 position: absolute;
948 /* @embed */
949 background: url(images/tipsy-arrow.gif) no-repeat top left;
950 width: 13px;
951 height: 13px;
952 }
953 .tipsy-se .tipsy-arrow {
954 bottom: -2px;
955 right: 10px;
956 background-position: 0% 100%;
957 }
958
959 /* LTR content in RTL layout */
960 .ltr {
961 /* @noflip */
962 direction: ltr;
963 unicode-bidi: embed;
964 }
965
966 #mw-clearyourcache,
967 #mw-sitecsspreview,
968 #mw-sitejspreview,
969 #mw-usercsspreview,
970 #mw-userjspreview {
971 direction: ltr;
972 unicode-bidi: embed;
973 }
974
975 /* Correct user & content directionality when viewing a diff */
976 .diff-currentversion-title,
977 .diff {
978 direction: ltr;
979 unicode-bidi: embed;
980 }
981 /* @noflip */ .diff-contentalign-right td {
982 direction: rtl;
983 unicode-bidi: embed;
984 }
985 /* @noflip */ .diff-contentalign-left td {
986 direction: ltr;
987 unicode-bidi: embed;
988 }
989 .diff-otitle,
990 .diff-ntitle,
991 .diff-lineno {
992 direction: ltr !important;
993 unicode-bidi: embed;
994 }
995
996 #mw-revision-info,
997 #mw-revision-info-current,
998 #mw-revision-nav {
999 direction: ltr;
1000 display: inline;
1001 }
1002
1003 /* Images */
1004
1005 /* @noflip */ div.tright,
1006 div.floatright,
1007 table.floatright {
1008 clear: right;
1009 float: right;
1010 }
1011 /* @noflip */ div.tleft,
1012 div.floatleft,
1013 table.floatleft {
1014 float: left;
1015 clear: left;
1016 }
1017 div.floatright,
1018 table.floatright,
1019 div.floatleft,
1020 table.floatleft {
1021 position: relative;
1022 }
1023
1024 /* bug 12205 */
1025 #mw-credits a {
1026 unicode-bidi: embed;
1027 }
1028
1029 /* Accessibility */
1030 .mw-jump {
1031 overflow: hidden;
1032 height: 0;
1033 zoom: 1; /* http://webaim.org/techniques/skipnav/#iequirk */
1034 }
1035
1036 /* For developpers */
1037 .xdebug-error {
1038 position: absolute;
1039 z-index: 99;
1040 }