From 6b0ce6ac5d63cddd34d3a8beaa314600a56903bc Mon Sep 17 00:00:00 2001 From: Drew Franklin Date: Fri, 5 May 2017 11:19:55 -0700 Subject: [PATCH] Update to abbreviation specificity to overwrite normalize Normalize's abbr[title] styling was overwriting this style. Adding this specificity promotes foundation abbr above normalize --- scss/typography/_base.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scss/typography/_base.scss b/scss/typography/_base.scss index ff055bb49..f85c398ce 100644 --- a/scss/typography/_base.scss +++ b/scss/typography/_base.scss @@ -469,10 +469,11 @@ $abbr-underline: 1px dotted $black !default; } // Abbreviations - abbr { + abbr, abbr[title] { border-bottom: $abbr-underline; color: $body-font-color; cursor: help; + text-decoration: none; } // Figures -- 2.47.2