From: Bartosz DziewoƄski Date: Sat, 8 Aug 2015 14:56:25 +0000 (+0200) Subject: mediawiki.legacy: Use 'none' rather than 'initial' to remove border X-Git-Tag: 1.31.0-rc.0~10481^2 X-Git-Url: https://git.cyclocoop.org/admin/?a=commitdiff_plain;h=369a9e7074b6dc1e6799114e6a034ae40e018057;p=lhc%2Fweb%2Fwiklou.git mediawiki.legacy: Use 'none' rather than 'initial' to remove border A browser could potentially support 'text-decoration: underline dotted' (which we check for with '@supports'), but not 'initial' value (which we don't check for), resulting in double underlining. Follow-up to I6fb2d2b8016c1f3164999e25cbc058ccd9a2f121. Change-Id: I13359e99010b524cf1a9f868374327b2c17399b7 --- diff --git a/resources/src/mediawiki.legacy/shared.css b/resources/src/mediawiki.legacy/shared.css index 2bf8c25ca4..b69e59d07f 100644 --- a/resources/src/mediawiki.legacy/shared.css +++ b/resources/src/mediawiki.legacy/shared.css @@ -81,7 +81,7 @@ abbr[title], @supports (text-decoration: underline dotted) { abbr[title], .explain[title] { - border-bottom: initial; + border-bottom: none; text-decoration: underline dotted; } }