From: Andy Cochran Date: Wed, 6 Jan 2016 16:08:09 +0000 (-0500) Subject: remove unnecessary borders on css-triangle mixin which caused hover issues for tooltips X-Git-Tag: v6.1.2~85^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7784%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git remove unnecessary borders on css-triangle mixin which caused hover issues for tooltips --- diff --git a/scss/util/_mixins.scss b/scss/util/_mixins.scss index 56e51c1cc..b2053fc5b 100644 --- a/scss/util/_mixins.scss +++ b/scss/util/_mixins.scss @@ -25,18 +25,22 @@ @if ($triangle-direction == down) { border-color: $triangle-color transparent transparent; border-top-style: solid; + border-bottom-width: 0; } @if ($triangle-direction == up) { border-color: transparent transparent $triangle-color; border-bottom-style: solid; + border-top-width: 0; } @if ($triangle-direction == right) { border-color: transparent transparent transparent $triangle-color; border-left-style: solid; + border-right-width: 0; } @if ($triangle-direction == left) { border-color: transparent $triangle-color transparent transparent; border-right-style: solid; + border-left-width: 0; } }