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