Move styles for Special:FileDuplicateSearch to mediawiki.special
[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 * NOTE: The images which are referenced in this file are no longer in use in
7 * essential interface components. They should NOT be embedded, because that
8 * optimizes for the uncommon case at the cost of bloating the size of render-
9 * blocking CSS common to all pages.
10 */
11
12 /* GENERAL CLASSES FOR DIRECTIONALITY SUPPORT */
13
14 /**
15 * These classes should be used for text depending on the content direction.
16 * Content stuff like editsection, ul/ol and TOC depend on this.
17 */
18 .mw-content-ltr {
19 /* @noflip */
20 direction: ltr;
21 }
22
23 .mw-content-rtl {
24 /* @noflip */
25 direction: rtl;
26 }
27
28 /* Most input fields should be in site direction */
29 .sitedir-ltr textarea,
30 .sitedir-ltr input {
31 /* @noflip */
32 direction: ltr;
33 }
34
35 .sitedir-rtl textarea,
36 .sitedir-rtl input {
37 /* @noflip */
38 direction: rtl;
39 }
40
41 .mw-userlink {
42 unicode-bidi: embed;
43 }
44
45 /* User-Agent styles for new HTML5 elements */
46 mark {
47 background-color: yellow;
48 color: black;
49 }
50
51 /* Helper for wbr element on IE 8+; in HTML5, but not supported by default as of IE 11. */
52 /* Note canonical HTML5 styles recommend "content: \u200B", but this doesn't work as of IE 11. */
53 wbr {
54 display: inline-block;
55 }
56
57 /* Input types that should follow user direction, like buttons */
58 /* TODO: What about buttons in wikipage content ? */
59 input[type="submit"],
60 input[type="button"],
61 input[type="reset"],
62 input[type="file"] {
63 direction: ltr;
64 }
65
66 /* Override default values */
67 textarea[dir="ltr"],
68 input[dir="ltr"] {
69 /* @noflip */
70 direction: ltr;
71 }
72
73 textarea[dir="rtl"],
74 input[dir="rtl"] {
75 /* @noflip */
76 direction: rtl;
77 }
78
79 /* Default style for semantic tags */
80 abbr[title],
81 .explain[title] {
82 border-bottom: 1px dotted;
83 cursor: help;
84 }
85
86 @supports (text-decoration: underline dotted) {
87 abbr[title],
88 .explain[title] {
89 border-bottom: none;
90 text-decoration: underline dotted;
91 }
92 }
93
94 /* Colored watchlist and recent changes numbers */
95 .mw-plusminus-pos {
96 color: #006400; /* dark green */
97 }
98
99 .mw-plusminus-neg {
100 color: #8b0000; /* dark red */
101 }
102
103 .mw-plusminus-null {
104 color: #aaa; /* gray */
105 }
106
107 /*
108 * Bidi-isolate these numbers.
109 * See https://phabricator.wikimedia.org/T93484
110 */
111 .mw-plusminus-pos,
112 .mw-plusminus-neg,
113 .mw-plusminus-null {
114 unicode-bidi: -moz-isolate;
115 unicode-bidi: -webkit-isolate;
116 unicode-bidi: isolate;
117 }
118
119 /* Comment portions of RC entries */
120 span.comment {
121 font-style: italic;
122 }
123
124 /* Math */
125 .texvc {
126 direction: ltr;
127 unicode-bidi: embed;
128 }
129
130 img.tex {
131 vertical-align: middle;
132 }
133
134 span.texhtml {
135 font-family: serif;
136 }
137
138 /**
139 * Add a bit of margin space between the preview and the toolbar.
140 * This replaces the ugly <p><br /></p> we used to insert into the page source
141 */
142 #wikiPreview.ontop {
143 margin-bottom: 1em;
144 }
145
146 /* Stop floats from intruding into edit area in previews */
147 #editform,
148 #toolbar,
149 #wpTextbox1 {
150 clear: both;
151 }
152
153 /**
154 * rev_deleted stuff
155 */
156 li span.deleted,
157 span.history-deleted {
158 text-decoration: line-through;
159 color: #888;
160 font-style: italic;
161 }
162
163 /**
164 * Patrol stuff
165 */
166 .not-patrolled {
167 background-color: #ffa;
168 }
169
170 .unpatrolled {
171 font-weight: bold;
172 color: red;
173 }
174
175 div.patrollink {
176 font-size: 75%;
177 text-align: right;
178 }
179
180 /**
181 * Forms
182 */
183 td.mw-label {
184 text-align: right;
185 }
186
187 td.mw-input {
188 text-align: left;
189 }
190
191 td.mw-submit {
192 text-align: left;
193 }
194
195 td.mw-label {
196 vertical-align: middle;
197 }
198
199 td.mw-submit {
200 white-space: nowrap;
201 }
202
203 input#wpSummary {
204 width: 80%;
205 margin-bottom: 1em;
206 }
207
208 /**
209 * Image captions.
210 *
211 * This is only meant to provide the most basic of styles, visual settings shouldn't be added here.
212 */
213
214 /* @noflip */
215 .mw-content-ltr .thumbcaption {
216 text-align: left;
217 }
218
219 /* @noflip */
220 .mw-content-ltr .magnify {
221 float: right;
222 }
223
224 /* @noflip */
225 .mw-content-rtl .thumbcaption {
226 text-align: right;
227 }
228
229 /* @noflip */
230 .mw-content-rtl .magnify {
231 float: left;
232 }
233
234 /**
235 * Categories
236 */
237 #catlinks {
238 /**
239 * Overrides text justification (user preference)
240 * See bug 31990
241 */
242 text-align: left;
243 }
244
245 .catlinks ul {
246 display: inline;
247 margin: 0;
248 padding: 0;
249 list-style: none;
250 list-style-type: none;
251 list-style-image: none;
252 vertical-align: middle !ie;
253 }
254
255 .catlinks li {
256 display: inline-block;
257 line-height: 1.25em;
258 border-left: 1px solid #AAA;
259 margin: 0.125em 0;
260 padding: 0 0.5em;
261 zoom: 1;
262 display: inline !ie;
263 }
264
265 .catlinks li:first-child {
266 padding-left: 0.25em;
267 border-left: none;
268 }
269
270 /* (bug 5346) make category redirects italic */
271 .catlinks li a.mw-redirect {
272 font-style: italic;
273 }
274
275 /**
276 * Hidden categories
277 */
278 .mw-hidden-cats-hidden {
279 display: none;
280 }
281
282 .catlinks-allhidden {
283 display: none;
284 }
285
286 /**
287 * Convenience links to edit block, delete and protect reasons
288 * and upload licenses
289 */
290 p.mw-ipb-conveniencelinks,
291 p.mw-protect-editreasons,
292 p.mw-filedelete-editreasons,
293 p.mw-delete-editreasons,
294 p.mw-revdel-editreasons,
295 p.mw-upload-editlicenses {
296 font-size: 90%;
297 text-align: right;
298 }
299
300 /* Page history styling */
301
302 /* The auto-generated edit comments */
303 .autocomment {
304 color: gray;
305 }
306
307 #pagehistory .history-user {
308 margin-left: 0.4em;
309 margin-right: 0.2em;
310 }
311
312 #pagehistory li {
313 border: 1px solid white;
314 }
315
316 #pagehistory li.selected {
317 background-color: #f9f9f9;
318 border: 1px dashed #aaa;
319 }
320
321 .mw-history-revisionactions {
322 float: right;
323 }
324
325 /** Generic minor/bot/newpage styling (recent changes) */
326 .newpage,
327 .minoredit,
328 .botedit {
329 font-weight: bold;
330 }
331
332 /**
333 * Recreating deleted page warning
334 * Reupload file warning
335 * Page protection warning
336 * incl. log entries for these warnings
337 */
338 div.mw-warning-with-logexcerpt {
339 padding: 3px;
340 margin-bottom: 3px;
341 border: 2px solid #2F6FAB;
342 clear: both;
343 }
344
345 div.mw-warning-with-logexcerpt ul li {
346 font-size: 90%;
347 }
348
349 /* (show/hide) revision deletion links */
350 span.mw-revdelundel-link,
351 strong.mw-revdelundel-link {
352 font-size: 90%;
353 }
354
355 span.mw-revdelundel-hidden,
356 input.mw-revdelundel-hidden {
357 visibility: hidden;
358 }
359
360 td.mw-revdel-checkbox,
361 th.mw-revdel-checkbox {
362 padding-right: 10px;
363 text-align: center;
364 }
365
366 /* red links; see bug 36276 */
367 a.new {
368 color: #BA0000;
369 }
370
371 /* Plainlinks - this can be used to switch
372 * off special external link styling */
373 .plainlinks a.external {
374 background: none !important;
375 padding: 0 !important;
376 }
377
378 /* External URLs should always be treated as LTR (bug 4330) */
379 /* @noflip */ .rtl a.external.free,
380 .rtl a.external.autonumber {
381 direction: ltr;
382 unicode-bidi: embed;
383 }
384
385 /**
386 * wikitable class for skinning normal tables
387 * keep in sync with commonPrint.css
388 */
389 table.wikitable {
390 margin: 1em 0;
391 background-color: #f9f9f9;
392 border: 1px solid #aaa;
393 border-collapse: collapse;
394 color: black;
395 }
396
397 table.wikitable > tr > th,
398 table.wikitable > tr > td,
399 table.wikitable > * > tr > th,
400 table.wikitable > * > tr > td {
401 border: 1px solid #aaa;
402 padding: 0.2em 0.4em;
403 }
404
405 table.wikitable > tr > th,
406 table.wikitable > * > tr > th {
407 background-color: #f2f2f2;
408 text-align: center;
409 }
410
411 table.wikitable > caption {
412 font-weight: bold;
413 }
414
415 /* success and error messages */
416 .error,
417 .warning,
418 .success {
419 font-size: larger;
420 }
421
422 .error {
423 color: #cc0000;
424 }
425
426 .warning {
427 color: #705000;
428 }
429
430 .success {
431 color: #009000;
432 }
433
434 .errorbox,
435 .warningbox,
436 .successbox {
437 border: 1px solid;
438 padding: .5em 1em;
439 margin-bottom: 1em;
440 display: inline-block;
441 zoom: 1;
442 *display: inline;
443 }
444
445 .errorbox h2,
446 .warningbox h2,
447 .successbox h2 {
448 font-size: 1em;
449 color: inherit;
450 font-weight: bold;
451 display: inline;
452 margin: 0 .5em 0 0;
453 border: none;
454 }
455
456 .errorbox {
457 color: #cc0000;
458 border-color: #fac5c5;
459 background-color: #fae3e3;
460 }
461
462 .warningbox {
463 color: #705000;
464 border-color: #fde29b;
465 background-color: #fdf1d1;
466 }
467
468 .successbox {
469 color: #008000;
470 border-color: #b7fdb5;
471 background-color: #e1fddf;
472 }
473
474 /* general info/warning box for SP */
475 .mw-infobox {
476 border: 2px solid #ff7f00;
477 margin: 0.5em;
478 clear: left;
479 overflow: hidden;
480 }
481
482 .mw-infobox-left {
483 margin: 7px;
484 float: left;
485 width: 35px;
486 }
487
488 .mw-infobox-right {
489 margin: 0.5em 0.5em 0.5em 49px;
490 }
491
492 /* Note on preview page */
493 .previewnote {
494 color: #c00;
495 margin-bottom: 1em;
496 }
497
498 .previewnote p {
499 text-indent: 3em;
500 margin: 0.8em 0;
501 }
502
503 .visualClear {
504 clear: both;
505 }
506
507 /**
508 * Data table style
509 *
510 * Transparent table with suddle borders
511 * and blue row-highlighting.
512 */
513 .mw-datatable {
514 border-collapse: collapse;
515 }
516
517 .mw-datatable,
518 .mw-datatable td,
519 .mw-datatable th {
520 border: 1px solid #aaaaaa;
521 padding: 0 0.15em 0 0.15em;
522 }
523
524 .mw-datatable th {
525 background-color: #ddddff;
526 }
527
528 .mw-datatable td {
529 background-color: #ffffff;
530 }
531
532 .mw-datatable tr:hover td {
533 background-color: #eeeeff;
534 }
535
536 /* Classes for Exif data display */
537 table.mw_metadata {
538 font-size: 0.8em;
539 margin-left: 0.5em;
540 margin-bottom: 0.5em;
541 width: 400px;
542 }
543
544 table.mw_metadata caption {
545 font-weight: bold;
546 }
547
548 table.mw_metadata th {
549 font-weight: normal;
550 }
551
552 table.mw_metadata td {
553 padding: 0.1em;
554 }
555
556 table.mw_metadata {
557 border: none;
558 border-collapse: collapse;
559 }
560
561 table.mw_metadata td,
562 table.mw_metadata th {
563 text-align: center;
564 border: 1px solid #aaaaaa;
565 padding-left: 5px;
566 padding-right: 5px;
567 }
568
569 table.mw_metadata th {
570 background-color: #f9f9f9;
571 }
572
573 table.mw_metadata td {
574 background-color: #fcfcfc;
575 }
576
577 table.mw_metadata ul.metadata-langlist {
578 list-style-type: none;
579 list-style-image: none;
580 padding-right: 5px;
581 padding-left: 5px;
582 margin: 0;
583 }
584
585 /* Correct directionality when page dir is different from site/user dir */
586 .mw-content-ltr ul,
587 .mw-content-rtl .mw-content-ltr ul {
588 /* @noflip */
589 margin: 0.3em 0 0 1.6em;
590 padding: 0;
591 }
592
593 .mw-content-rtl ul,
594 .mw-content-ltr .mw-content-rtl ul {
595 /* @noflip */
596 margin: 0.3em 1.6em 0 0;
597 padding: 0;
598 }
599
600 .mw-content-ltr ol,
601 .mw-content-rtl .mw-content-ltr ol {
602 /* @noflip */
603 margin: 0.3em 0 0 3.2em;
604 padding: 0;
605 }
606
607 .mw-content-rtl ol,
608 .mw-content-ltr .mw-content-rtl ol {
609 /* @noflip */
610 margin: 0.3em 3.2em 0 0;
611 padding: 0;
612 }
613
614 /* @noflip */
615 .mw-content-ltr dd,
616 .mw-content-rtl .mw-content-ltr dd {
617 margin-left: 1.6em;
618 margin-right: 0;
619 }
620
621 /* @noflip */
622 .mw-content-rtl dd,
623 .mw-content-ltr .mw-content-rtl dd {
624 margin-right: 1.6em;
625 margin-left: 0;
626 }
627
628 .mw-ajax-loader {
629 background-image: url(images/ajax-loader.gif);
630 background-position: center center;
631 background-repeat: no-repeat;
632 padding: 16px;
633 position: relative;
634 top: -16px;
635 }
636
637 .mw-small-spinner {
638 padding: 10px !important;
639 margin-right: 0.6em;
640 background-image: url(images/spinner.gif);
641 background-position: center center;
642 background-repeat: no-repeat;
643 }
644
645 /* Language specific height correction for titles. Ref Bug 29405 and Bug 30809 */
646 /* Languages like hi or ml require slightly more vertical space to show diacritics properly */
647 h1:lang(anp),
648 h1:lang(as),
649 h1:lang(bh), /* Macrolanguage, used on bh.wikipedia.org, should be removed one day */
650 h1:lang(bho),
651 h1:lang(bn),
652 h1:lang(gu),
653 h1:lang(hi),
654 h1:lang(kn),
655 h1:lang(ks),
656 h1:lang(ml),
657 h1:lang(mr),
658 h1:lang(my),
659 h1:lang(mai),
660 h1:lang(ne),
661 h1:lang(new),
662 h1:lang(or),
663 h1:lang(pa),
664 h1:lang(pi),
665 h1:lang(sa),
666 h1:lang(ta),
667 h1:lang(te) {
668 line-height: 1.6em !important;
669 }
670
671 h2:lang(anp), h3:lang(anp), h4:lang(anp), h5:lang(anp), h6:lang(anp),
672 h2:lang(as), h3:lang(as), h4:lang(as), h5:lang(as), h6:lang(as),
673 h2:lang(bho), h3:lang(bho), h4:lang(bho), h5:lang(bho), h6:lang(bho),
674 h2:lang(bh), h3:lang(bh), h4:lang(bh), h5:lang(bh), h6:lang(bh),
675 h2:lang(bn), h3:lang(bn), h4:lang(bn), h5:lang(bn), h6:lang(bn),
676 h2:lang(gu), h3:lang(gu), h4:lang(gu), h5:lang(gu), h6:lang(gu),
677 h2:lang(hi), h3:lang(hi), h4:lang(hi), h5:lang(hi), h6:lang(hi),
678 h2:lang(kn), h3:lang(kn), h4:lang(kn), h5:lang(kn), h6:lang(kn),
679 h2:lang(ks), h3:lang(ks), h4:lang(ks), h5:lang(ks), h6:lang(ks),
680 h2:lang(ml), h3:lang(ml), h4:lang(ml), h5:lang(ml), h6:lang(ml),
681 h2:lang(mr), h3:lang(mr), h4:lang(mr), h5:lang(mr), h6:lang(mr),
682 h2:lang(my), h3:lang(my), h4:lang(my), h5:lang(my), h6:lang(my),
683 h2:lang(mai), h3:lang(mai), h4:lang(mai), h5:lang(mai), h6:lang(mai),
684 h2:lang(ne), h3:lang(ne), h4:lang(ne), h5:lang(ne), h6:lang(ne),
685 h2:lang(new), h3:lang(new), h4:lang(new), h5:lang(new), h6:lang(new),
686 h2:lang(or), h3:lang(or), h4:lang(or), h5:lang(or), h6:lang(or),
687 h2:lang(pa), h3:lang(pa), h4:lang(pa), h5:lang(pa), h6:lang(pa),
688 h2:lang(pi), h3:lang(pi), h4:lang(pi), h5:lang(pi), h6:lang(pi),
689 h2:lang(sa), h3:lang(sa), h4:lang(sa), h5:lang(sa), h6:lang(sa),
690 h2:lang(ta), h3:lang(ta), h4:lang(ta), h5:lang(ta), h6:lang(ta),
691 h2:lang(te), h3:lang(te), h4:lang(te), h5:lang(te), h6:lang(te) {
692 line-height: 1.2em;
693 }
694
695 /* Localised ordered list numbering for some languages */
696 ol:lang(azb) li,
697 ol:lang(bcc) li,
698 ol:lang(bgn) li,
699 ol:lang(bqi) li,
700 ol:lang(fa) li,
701 ol:lang(glk) li,
702 ol:lang(kk-arab) li,
703 ol:lang(lrc) li,
704 ol:lang(luz) li,
705 ol:lang(mzn) li {
706 list-style-type: -moz-persian;
707 list-style-type: persian;
708 }
709
710 ol:lang(ckb) li,
711 ol:lang(sdh) li {
712 list-style-type: -moz-arabic-indic;
713 list-style-type: arabic-indic;
714 }
715
716 ol:lang(hi) li,
717 ol:lang(mr) li {
718 list-style-type: -moz-devanagari;
719 list-style-type: devanagari;
720 }
721
722 ol:lang(as) li,
723 ol:lang(bn) li {
724 list-style-type: -moz-bengali;
725 list-style-type: bengali;
726 }
727
728 ol:lang(or) li {
729 list-style-type: -moz-oriya;
730 list-style-type: oriya;
731 }
732
733 #toc ul, .toc ul {
734 margin: .3em 0;
735 }
736
737 /* Correct directionality when page dir is different from site/user dir */
738 /* @noflip */ .mw-content-ltr .toc ul,
739 .mw-content-ltr #toc ul,
740 .mw-content-rtl .mw-content-ltr .toc ul,
741 .mw-content-rtl .mw-content-ltr #toc ul {
742 text-align: left;
743 }
744
745 /* @noflip */ .mw-content-rtl .toc ul,
746 .mw-content-rtl #toc ul,
747 .mw-content-ltr .mw-content-rtl .toc ul,
748 .mw-content-ltr .mw-content-rtl #toc ul {
749 text-align: right;
750 }
751
752 /* @noflip */ .mw-content-ltr .toc ul ul,
753 .mw-content-ltr #toc ul ul,
754 .mw-content-rtl .mw-content-ltr .toc ul ul,
755 .mw-content-rtl .mw-content-ltr #toc ul ul {
756 margin: 0 0 0 2em;
757 }
758
759 /* @noflip */ .mw-content-rtl .toc ul ul,
760 .mw-content-rtl #toc ul ul,
761 .mw-content-ltr .mw-content-rtl .toc ul ul,
762 .mw-content-ltr .mw-content-rtl #toc ul ul {
763 margin: 0 2em 0 0;
764 }
765
766 #toc #toctitle,
767 .toc #toctitle,
768 #toc .toctitle,
769 .toc .toctitle {
770 direction: ltr;
771 }
772
773 /* tooltip styles */
774 .mw-help-field-hint {
775 display: none;
776 margin-left: 2px;
777 margin-bottom: -8px;
778 padding: 0 0 0 15px;
779 background-image: url(images/help-question.gif);
780 background-position: left center;
781 background-repeat: no-repeat;
782 cursor: pointer;
783 font-size: .8em;
784 text-decoration: underline;
785 color: #0645ad;
786 }
787
788 .mw-help-field-hint:hover {
789 background-image: url(images/help-question-hover.gif);
790 }
791
792 .mw-help-field-data {
793 display: block;
794 background-color: #d6f3ff;
795 padding: 5px 8px 4px 8px;
796 border: 1px solid #5dc9f4;
797 margin-left: 20px;
798 }
799
800 #mw-clearyourcache,
801 #mw-sitecsspreview,
802 #mw-sitejspreview,
803 #mw-usercsspreview,
804 #mw-userjspreview {
805 direction: ltr;
806 unicode-bidi: embed;
807 }
808
809 /* Correct user & content directionality when viewing a diff */
810 .diff-currentversion-title,
811 .diff {
812 direction: ltr;
813 unicode-bidi: embed;
814 }
815
816 /* @noflip */ .diff-contentalign-right td {
817 direction: rtl;
818 unicode-bidi: embed;
819 }
820
821 /* @noflip */ .diff-contentalign-left td {
822 direction: ltr;
823 unicode-bidi: embed;
824 }
825
826 .diff-multi,
827 .diff-otitle,
828 .diff-ntitle,
829 .diff-lineno {
830 direction: ltr !important;
831 unicode-bidi: embed;
832 }
833
834 #mw-revision-info,
835 #mw-revision-info-current,
836 #mw-revision-nav {
837 direction: ltr;
838 display: inline;
839 }
840
841 /* Images */
842
843 /* @noflip */ div.tright,
844 div.floatright,
845 table.floatright {
846 clear: right;
847 float: right;
848 }
849
850 /* @noflip */ div.tleft,
851 div.floatleft,
852 table.floatleft {
853 float: left;
854 clear: left;
855 }
856
857 div.floatright,
858 table.floatright,
859 div.floatleft,
860 table.floatleft {
861 position: relative;
862 }
863
864 /* bug 12205 */
865 #mw-credits a {
866 unicode-bidi: embed;
867 }
868
869 /* Accessibility */
870 .mw-jump,
871 #jump-to-nav {
872 overflow: hidden;
873 height: 0;
874 zoom: 1; /* http://webaim.org/techniques/skipnav/#iequirk */
875 }
876
877 /* Print footer should be hidden by default in screen. */
878 .printfooter {
879 display: none;
880 }
881
882 /* For developers */
883 .xdebug-error {
884 position: absolute;
885 z-index: 99;
886 }
887
888 .mw-editsection,
889 .toctoggle,
890 .tochidden,
891 #jump-to-nav {
892 -moz-user-select: none;
893 -webkit-user-select: none;
894 -ms-user-select: none;
895 user-select: none;
896 }
897
898 /* Display editsection links smaller and next to headings */
899 .mw-editsection,
900 .mw-editsection-like {
901 font-size: small;
902 font-weight: normal;
903 margin-left: 1em;
904 vertical-align: baseline;
905 /* Reset line-height; headings tend to have it set to larger values */
906 line-height: 1em;
907 /* As .mw-editsection is a <span> (inline element), it is treated as part */
908 /* of the heading content when selecting text by multiple clicks and thus */
909 /* selected together with heading content, despite the user-select: none; */
910 /* rule set above. This enforces non-selection without changing the look. */
911 display: inline-block;
912 }
913
914 /* Correct directionality when page dir is different from site/user dir */
915 /* @noflip */
916 .mw-content-ltr .mw-editsection,
917 .mw-content-rtl .mw-content-ltr .mw-editsection {
918 margin-left: 1em;
919 }
920
921 /* @noflip */
922 .mw-content-rtl .mw-editsection,
923 .mw-content-ltr .mw-content-rtl .mw-editsection {
924 margin-right: 1em;
925 }
926
927 /* Prevent citations and subscripts from interfering with the line-height */
928 sup,
929 sub {
930 line-height: 1;
931 }