From 41b328a23b64cacb668b7e2e0f2be7c1c756d5df Mon Sep 17 00:00:00 2001 From: Nicolas Hoffmann Date: Wed, 26 Aug 2015 15:09:47 +0200 Subject: [PATCH] Fix for double abbr in Firefox Firefox is styling abbr/acronym by default with ```text-decoration: dotted underline``` https://developer.mozilla.org/en-US/Firefox/Releases/40/Site_Compatibility This fix avoids a double border-bottom. --- less/_01a-normalize.less | 1 + 1 file changed, 1 insertion(+) diff --git a/less/_01a-normalize.less b/less/_01a-normalize.less index 87e37d2..adcb602 100644 --- a/less/_01a-normalize.less +++ b/less/_01a-normalize.less @@ -107,6 +107,7 @@ a:hover { */ abbr[title] { + text-decoration: none; border-bottom: 1px dotted; }