From: Eduardo Sanz GarcĂ­a Date: Thu, 14 Feb 2019 18:02:46 +0000 (+0000) Subject: refactor: set border style to solid and hide pieces X-Git-Tag: v6.7.1~25^2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1fee877e70d830285176b4a447b6ab0372e84ba;p=thirdparty%2Ffoundation%2Ffoundation-sites.git refactor: set border style to solid and hide pieces --- diff --git a/scss/util/_mixins.scss b/scss/util/_mixins.scss index 18e3f4a49..3a4b18759 100644 --- a/scss/util/_mixins.scss +++ b/scss/util/_mixins.scss @@ -44,29 +44,25 @@ width: 0; height: 0; - border-style: inset; + border-style: solid; border-width: $triangle-size; content: ''; @if ($triangle-direction == down) { border-bottom-width: 0; - border-top-style: solid; border-color: $triangle-color transparent transparent; } @if ($triangle-direction == up) { border-top-width: 0; - border-bottom-style: solid; border-color: transparent transparent $triangle-color; } @if ($triangle-direction == right) { border-right-width: 0; - border-left-style: solid; border-color: transparent transparent transparent $triangle-color; } @if ($triangle-direction == left) { border-left-width: 0; - border-right-style: solid; border-color: transparent $triangle-color transparent transparent; } }