From: Bartosz DziewoƄski Date: Thu, 3 Apr 2014 17:43:03 +0000 (+0200) Subject: shared.css: Move sup, sub styling from commonElements to shared styles X-Git-Tag: 1.31.0-rc.0~16359^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=669c7b311ed851a47c94ecc4871e725eb2642c55;p=lhc%2Fweb%2Fwiklou.git shared.css: Move sup, sub styling from commonElements to shared styles This really should be an even more basic style than I thought when moving this CSS here from Vector-specific stylesheet. Follow-up to Ie98f8b57 and Ic5ba8363. Bug: 49965 Change-Id: I80f8279e10277d1a7389c821037d733ccfc4e166 --- diff --git a/skins/common/commonElements.css b/skins/common/commonElements.css index 06f5eba5d8..ad7942a667 100644 --- a/skins/common/commonElements.css +++ b/skins/common/commonElements.css @@ -185,12 +185,6 @@ table { font-size: 100%; } -/* Prevent citations and subscripts from interfering with the line-height */ -sup, -sub { - line-height: 1; -} - /* Forms */ fieldset { border: 1px solid #2f6fab; diff --git a/skins/common/shared.css b/skins/common/shared.css index 942cbac421..084b8ff086 100644 --- a/skins/common/shared.css +++ b/skins/common/shared.css @@ -1217,3 +1217,9 @@ table.floatleft { .mw-content-ltr .mw-content-rtl .mw-editsection { margin-right: 1em; } + +/* Prevent citations and subscripts from interfering with the line-height */ +sup, +sub { + line-height: 1; +}