Merge "Move some styles of convenience links 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 delete and protect reasons
288 */
289 p.mw-protect-editreasons,
290 p.mw-filedelete-editreasons,
291 p.mw-delete-editreasons {
292 font-size: 90%;
293 text-align: right;
294 }
295
296 /* Page history styling */
297
298 /* The auto-generated edit comments */
299 .autocomment {
300 color: gray;
301 }
302
303 #pagehistory .history-user {
304 margin-left: 0.4em;
305 margin-right: 0.2em;
306 }
307
308 #pagehistory li {
309 border: 1px solid white;
310 }
311
312 #pagehistory li.selected {
313 background-color: #f9f9f9;
314 border: 1px dashed #aaa;
315 }
316
317 .mw-history-revisionactions {
318 float: right;
319 }
320
321 /** Generic minor/bot/newpage styling (recent changes) */
322 .newpage,
323 .minoredit,
324 .botedit {
325 font-weight: bold;
326 }
327
328 /**
329 * Recreating deleted page warning
330 * Reupload file warning
331 * Page protection warning
332 * incl. log entries for these warnings
333 */
334 div.mw-warning-with-logexcerpt {
335 padding: 3px;
336 margin-bottom: 3px;
337 border: 2px solid #2F6FAB;
338 clear: both;
339 }
340
341 div.mw-warning-with-logexcerpt ul li {
342 font-size: 90%;
343 }
344
345 /* (show/hide) revision deletion links */
346 span.mw-revdelundel-link,
347 strong.mw-revdelundel-link {
348 font-size: 90%;
349 }
350
351 span.mw-revdelundel-hidden,
352 input.mw-revdelundel-hidden {
353 visibility: hidden;
354 }
355
356 td.mw-revdel-checkbox,
357 th.mw-revdel-checkbox {
358 padding-right: 10px;
359 text-align: center;
360 }
361
362 /* red links; see bug 36276 */
363 a.new {
364 color: #BA0000;
365 }
366
367 /* Plainlinks - this can be used to switch
368 * off special external link styling */
369 .plainlinks a.external {
370 background: none !important;
371 padding: 0 !important;
372 }
373
374 /* External URLs should always be treated as LTR (bug 4330) */
375 /* @noflip */ .rtl a.external.free,
376 .rtl a.external.autonumber {
377 direction: ltr;
378 unicode-bidi: embed;
379 }
380
381 /**
382 * wikitable class for skinning normal tables
383 * keep in sync with commonPrint.css
384 */
385 table.wikitable {
386 margin: 1em 0;
387 background-color: #f9f9f9;
388 border: 1px solid #aaa;
389 border-collapse: collapse;
390 color: black;
391 }
392
393 table.wikitable > tr > th,
394 table.wikitable > tr > td,
395 table.wikitable > * > tr > th,
396 table.wikitable > * > tr > td {
397 border: 1px solid #aaa;
398 padding: 0.2em 0.4em;
399 }
400
401 table.wikitable > tr > th,
402 table.wikitable > * > tr > th {
403 background-color: #f2f2f2;
404 text-align: center;
405 }
406
407 table.wikitable > caption {
408 font-weight: bold;
409 }
410
411 /* success and error messages */
412 .error,
413 .warning,
414 .success {
415 font-size: larger;
416 }
417
418 .error {
419 color: #cc0000;
420 }
421
422 .warning {
423 color: #705000;
424 }
425
426 .success {
427 color: #009000;
428 }
429
430 .errorbox,
431 .warningbox,
432 .successbox {
433 border: 1px solid;
434 padding: .5em 1em;
435 margin-bottom: 1em;
436 display: inline-block;
437 zoom: 1;
438 *display: inline;
439 }
440
441 .errorbox h2,
442 .warningbox h2,
443 .successbox h2 {
444 font-size: 1em;
445 color: inherit;
446 font-weight: bold;
447 display: inline;
448 margin: 0 .5em 0 0;
449 border: none;
450 }
451
452 .errorbox {
453 color: #cc0000;
454 border-color: #fac5c5;
455 background-color: #fae3e3;
456 }
457
458 .warningbox {
459 color: #705000;
460 border-color: #fde29b;
461 background-color: #fdf1d1;
462 }
463
464 .successbox {
465 color: #008000;
466 border-color: #b7fdb5;
467 background-color: #e1fddf;
468 }
469
470 /* general info/warning box for SP */
471 .mw-infobox {
472 border: 2px solid #ff7f00;
473 margin: 0.5em;
474 clear: left;
475 overflow: hidden;
476 }
477
478 .mw-infobox-left {
479 margin: 7px;
480 float: left;
481 width: 35px;
482 }
483
484 .mw-infobox-right {
485 margin: 0.5em 0.5em 0.5em 49px;
486 }
487
488 /* Note on preview page */
489 .previewnote {
490 color: #c00;
491 margin-bottom: 1em;
492 }
493
494 .previewnote p {
495 text-indent: 3em;
496 margin: 0.8em 0;
497 }
498
499 .visualClear {
500 clear: both;
501 }
502
503 /**
504 * Data table style
505 *
506 * Transparent table with suddle borders
507 * and blue row-highlighting.
508 */
509 .mw-datatable {
510 border-collapse: collapse;
511 }
512
513 .mw-datatable,
514 .mw-datatable td,
515 .mw-datatable th {
516 border: 1px solid #aaaaaa;
517 padding: 0 0.15em 0 0.15em;
518 }
519
520 .mw-datatable th {
521 background-color: #ddddff;
522 }
523
524 .mw-datatable td {
525 background-color: #ffffff;
526 }
527
528 .mw-datatable tr:hover td {
529 background-color: #eeeeff;
530 }
531
532 /* Classes for Exif data display */
533 table.mw_metadata {
534 font-size: 0.8em;
535 margin-left: 0.5em;
536 margin-bottom: 0.5em;
537 width: 400px;
538 }
539
540 table.mw_metadata caption {
541 font-weight: bold;
542 }
543
544 table.mw_metadata th {
545 font-weight: normal;
546 }
547
548 table.mw_metadata td {
549 padding: 0.1em;
550 }
551
552 table.mw_metadata {
553 border: none;
554 border-collapse: collapse;
555 }
556
557 table.mw_metadata td,
558 table.mw_metadata th {
559 text-align: center;
560 border: 1px solid #aaaaaa;
561 padding-left: 5px;
562 padding-right: 5px;
563 }
564
565 table.mw_metadata th {
566 background-color: #f9f9f9;
567 }
568
569 table.mw_metadata td {
570 background-color: #fcfcfc;
571 }
572
573 table.mw_metadata ul.metadata-langlist {
574 list-style-type: none;
575 list-style-image: none;
576 padding-right: 5px;
577 padding-left: 5px;
578 margin: 0;
579 }
580
581 /* Correct directionality when page dir is different from site/user dir */
582 .mw-content-ltr ul,
583 .mw-content-rtl .mw-content-ltr ul {
584 /* @noflip */
585 margin: 0.3em 0 0 1.6em;
586 padding: 0;
587 }
588
589 .mw-content-rtl ul,
590 .mw-content-ltr .mw-content-rtl ul {
591 /* @noflip */
592 margin: 0.3em 1.6em 0 0;
593 padding: 0;
594 }
595
596 .mw-content-ltr ol,
597 .mw-content-rtl .mw-content-ltr ol {
598 /* @noflip */
599 margin: 0.3em 0 0 3.2em;
600 padding: 0;
601 }
602
603 .mw-content-rtl ol,
604 .mw-content-ltr .mw-content-rtl ol {
605 /* @noflip */
606 margin: 0.3em 3.2em 0 0;
607 padding: 0;
608 }
609
610 /* @noflip */
611 .mw-content-ltr dd,
612 .mw-content-rtl .mw-content-ltr dd {
613 margin-left: 1.6em;
614 margin-right: 0;
615 }
616
617 /* @noflip */
618 .mw-content-rtl dd,
619 .mw-content-ltr .mw-content-rtl dd {
620 margin-right: 1.6em;
621 margin-left: 0;
622 }
623
624 .mw-ajax-loader {
625 background-image: url(images/ajax-loader.gif);
626 background-position: center center;
627 background-repeat: no-repeat;
628 padding: 16px;
629 position: relative;
630 top: -16px;
631 }
632
633 .mw-small-spinner {
634 padding: 10px !important;
635 margin-right: 0.6em;
636 background-image: url(images/spinner.gif);
637 background-position: center center;
638 background-repeat: no-repeat;
639 }
640
641 /* Language specific height correction for titles. Ref Bug 29405 and Bug 30809 */
642 /* Languages like hi or ml require slightly more vertical space to show diacritics properly */
643 h1:lang(anp),
644 h1:lang(as),
645 h1:lang(bh), /* Macrolanguage, used on bh.wikipedia.org, should be removed one day */
646 h1:lang(bho),
647 h1:lang(bn),
648 h1:lang(gu),
649 h1:lang(hi),
650 h1:lang(kn),
651 h1:lang(ks),
652 h1:lang(ml),
653 h1:lang(mr),
654 h1:lang(my),
655 h1:lang(mai),
656 h1:lang(ne),
657 h1:lang(new),
658 h1:lang(or),
659 h1:lang(pa),
660 h1:lang(pi),
661 h1:lang(sa),
662 h1:lang(ta),
663 h1:lang(te) {
664 line-height: 1.6em !important;
665 }
666
667 h2:lang(anp), h3:lang(anp), h4:lang(anp), h5:lang(anp), h6:lang(anp),
668 h2:lang(as), h3:lang(as), h4:lang(as), h5:lang(as), h6:lang(as),
669 h2:lang(bho), h3:lang(bho), h4:lang(bho), h5:lang(bho), h6:lang(bho),
670 h2:lang(bh), h3:lang(bh), h4:lang(bh), h5:lang(bh), h6:lang(bh),
671 h2:lang(bn), h3:lang(bn), h4:lang(bn), h5:lang(bn), h6:lang(bn),
672 h2:lang(gu), h3:lang(gu), h4:lang(gu), h5:lang(gu), h6:lang(gu),
673 h2:lang(hi), h3:lang(hi), h4:lang(hi), h5:lang(hi), h6:lang(hi),
674 h2:lang(kn), h3:lang(kn), h4:lang(kn), h5:lang(kn), h6:lang(kn),
675 h2:lang(ks), h3:lang(ks), h4:lang(ks), h5:lang(ks), h6:lang(ks),
676 h2:lang(ml), h3:lang(ml), h4:lang(ml), h5:lang(ml), h6:lang(ml),
677 h2:lang(mr), h3:lang(mr), h4:lang(mr), h5:lang(mr), h6:lang(mr),
678 h2:lang(my), h3:lang(my), h4:lang(my), h5:lang(my), h6:lang(my),
679 h2:lang(mai), h3:lang(mai), h4:lang(mai), h5:lang(mai), h6:lang(mai),
680 h2:lang(ne), h3:lang(ne), h4:lang(ne), h5:lang(ne), h6:lang(ne),
681 h2:lang(new), h3:lang(new), h4:lang(new), h5:lang(new), h6:lang(new),
682 h2:lang(or), h3:lang(or), h4:lang(or), h5:lang(or), h6:lang(or),
683 h2:lang(pa), h3:lang(pa), h4:lang(pa), h5:lang(pa), h6:lang(pa),
684 h2:lang(pi), h3:lang(pi), h4:lang(pi), h5:lang(pi), h6:lang(pi),
685 h2:lang(sa), h3:lang(sa), h4:lang(sa), h5:lang(sa), h6:lang(sa),
686 h2:lang(ta), h3:lang(ta), h4:lang(ta), h5:lang(ta), h6:lang(ta),
687 h2:lang(te), h3:lang(te), h4:lang(te), h5:lang(te), h6:lang(te) {
688 line-height: 1.2em;
689 }
690
691 /* Localised ordered list numbering for some languages */
692 ol:lang(azb) li,
693 ol:lang(bcc) li,
694 ol:lang(bgn) li,
695 ol:lang(bqi) li,
696 ol:lang(fa) li,
697 ol:lang(glk) li,
698 ol:lang(kk-arab) li,
699 ol:lang(lrc) li,
700 ol:lang(luz) li,
701 ol:lang(mzn) li {
702 list-style-type: -moz-persian;
703 list-style-type: persian;
704 }
705
706 ol:lang(ckb) li,
707 ol:lang(sdh) li {
708 list-style-type: -moz-arabic-indic;
709 list-style-type: arabic-indic;
710 }
711
712 ol:lang(hi) li,
713 ol:lang(mr) li {
714 list-style-type: -moz-devanagari;
715 list-style-type: devanagari;
716 }
717
718 ol:lang(as) li,
719 ol:lang(bn) li {
720 list-style-type: -moz-bengali;
721 list-style-type: bengali;
722 }
723
724 ol:lang(or) li {
725 list-style-type: -moz-oriya;
726 list-style-type: oriya;
727 }
728
729 #toc ul, .toc ul {
730 margin: .3em 0;
731 }
732
733 /* Correct directionality when page dir is different from site/user dir */
734 /* @noflip */ .mw-content-ltr .toc ul,
735 .mw-content-ltr #toc ul,
736 .mw-content-rtl .mw-content-ltr .toc ul,
737 .mw-content-rtl .mw-content-ltr #toc ul {
738 text-align: left;
739 }
740
741 /* @noflip */ .mw-content-rtl .toc ul,
742 .mw-content-rtl #toc ul,
743 .mw-content-ltr .mw-content-rtl .toc ul,
744 .mw-content-ltr .mw-content-rtl #toc ul {
745 text-align: right;
746 }
747
748 /* @noflip */ .mw-content-ltr .toc ul ul,
749 .mw-content-ltr #toc ul ul,
750 .mw-content-rtl .mw-content-ltr .toc ul ul,
751 .mw-content-rtl .mw-content-ltr #toc ul ul {
752 margin: 0 0 0 2em;
753 }
754
755 /* @noflip */ .mw-content-rtl .toc ul ul,
756 .mw-content-rtl #toc ul ul,
757 .mw-content-ltr .mw-content-rtl .toc ul ul,
758 .mw-content-ltr .mw-content-rtl #toc ul ul {
759 margin: 0 2em 0 0;
760 }
761
762 #toc #toctitle,
763 .toc #toctitle,
764 #toc .toctitle,
765 .toc .toctitle {
766 direction: ltr;
767 }
768
769 /* tooltip styles */
770 .mw-help-field-hint {
771 display: none;
772 margin-left: 2px;
773 margin-bottom: -8px;
774 padding: 0 0 0 15px;
775 background-image: url(images/help-question.gif);
776 background-position: left center;
777 background-repeat: no-repeat;
778 cursor: pointer;
779 font-size: .8em;
780 text-decoration: underline;
781 color: #0645ad;
782 }
783
784 .mw-help-field-hint:hover {
785 background-image: url(images/help-question-hover.gif);
786 }
787
788 .mw-help-field-data {
789 display: block;
790 background-color: #d6f3ff;
791 padding: 5px 8px 4px 8px;
792 border: 1px solid #5dc9f4;
793 margin-left: 20px;
794 }
795
796 #mw-clearyourcache,
797 #mw-sitecsspreview,
798 #mw-sitejspreview,
799 #mw-usercsspreview,
800 #mw-userjspreview {
801 direction: ltr;
802 unicode-bidi: embed;
803 }
804
805 /* Correct user & content directionality when viewing a diff */
806 .diff-currentversion-title,
807 .diff {
808 direction: ltr;
809 unicode-bidi: embed;
810 }
811
812 /* @noflip */ .diff-contentalign-right td {
813 direction: rtl;
814 unicode-bidi: embed;
815 }
816
817 /* @noflip */ .diff-contentalign-left td {
818 direction: ltr;
819 unicode-bidi: embed;
820 }
821
822 .diff-multi,
823 .diff-otitle,
824 .diff-ntitle,
825 .diff-lineno {
826 direction: ltr !important;
827 unicode-bidi: embed;
828 }
829
830 #mw-revision-info,
831 #mw-revision-info-current,
832 #mw-revision-nav {
833 direction: ltr;
834 display: inline;
835 }
836
837 /* Images */
838
839 /* @noflip */ div.tright,
840 div.floatright,
841 table.floatright {
842 clear: right;
843 float: right;
844 }
845
846 /* @noflip */ div.tleft,
847 div.floatleft,
848 table.floatleft {
849 float: left;
850 clear: left;
851 }
852
853 div.floatright,
854 table.floatright,
855 div.floatleft,
856 table.floatleft {
857 position: relative;
858 }
859
860 /* bug 12205 */
861 #mw-credits a {
862 unicode-bidi: embed;
863 }
864
865 /* Accessibility */
866 .mw-jump,
867 #jump-to-nav {
868 overflow: hidden;
869 height: 0;
870 zoom: 1; /* http://webaim.org/techniques/skipnav/#iequirk */
871 }
872
873 /* Print footer should be hidden by default in screen. */
874 .printfooter {
875 display: none;
876 }
877
878 /* For developers */
879 .xdebug-error {
880 position: absolute;
881 z-index: 99;
882 }
883
884 .mw-editsection,
885 .toctoggle,
886 .tochidden,
887 #jump-to-nav {
888 -moz-user-select: none;
889 -webkit-user-select: none;
890 -ms-user-select: none;
891 user-select: none;
892 }
893
894 /* Display editsection links smaller and next to headings */
895 .mw-editsection,
896 .mw-editsection-like {
897 font-size: small;
898 font-weight: normal;
899 margin-left: 1em;
900 vertical-align: baseline;
901 /* Reset line-height; headings tend to have it set to larger values */
902 line-height: 1em;
903 /* As .mw-editsection is a <span> (inline element), it is treated as part */
904 /* of the heading content when selecting text by multiple clicks and thus */
905 /* selected together with heading content, despite the user-select: none; */
906 /* rule set above. This enforces non-selection without changing the look. */
907 display: inline-block;
908 }
909
910 /* Correct directionality when page dir is different from site/user dir */
911 /* @noflip */
912 .mw-content-ltr .mw-editsection,
913 .mw-content-rtl .mw-content-ltr .mw-editsection {
914 margin-left: 1em;
915 }
916
917 /* @noflip */
918 .mw-content-rtl .mw-editsection,
919 .mw-content-ltr .mw-content-rtl .mw-editsection {
920 margin-right: 1em;
921 }
922
923 /* Prevent citations and subscripts from interfering with the line-height */
924 sup,
925 sub {
926 line-height: 1;
927 }