]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
refactor: set border style to solid and hide pieces 11679/head
authorEduardo Sanz García <esanzgar@gmail.com>
Thu, 14 Feb 2019 18:02:46 +0000 (18:02 +0000)
committerEduardo Sanz García <esanzgar@gmail.com>
Thu, 14 Feb 2019 18:02:46 +0000 (18:02 +0000)
scss/util/_mixins.scss

index 18e3f4a490284540e7c9129aa4d9981f83fa5ef8..3a4b18759452f72c8f3bd16d3c2da35e11926621 100644 (file)
   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;
   }
 }