From 05e96c23d349072b6d770dccb6dabe3e05d0f2ce Mon Sep 17 00:00:00 2001 From: Andy Cochran Date: Wed, 6 Jan 2016 11:08:09 -0500 Subject: [PATCH] remove unnecessary borders on css-triangle mixin which caused hover issues for tooltips --- scss/util/_mixins.scss | 4 ++++ 1 file changed, 4 insertions(+) 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; } } -- 2.47.2