From: canterberrie Date: Mon, 6 Feb 2017 23:59:41 +0000 (-0800) Subject: fixes #8404hollow button dropdown arrow X-Git-Tag: 6.3.1~6^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bf6742f3d18e0b841557207e73a9c2de5abd11a9;p=thirdparty%2Ffoundation%2Ffoundation-sites.git fixes #8404hollow button dropdown arrow --- diff --git a/scss/components/_button.scss b/scss/components/_button.scss index 9115adc07..26170a3ae 100644 --- a/scss/components/_button.scss +++ b/scss/components/_button.scss @@ -306,6 +306,20 @@ $button-transition: background-color 0.25s ease-out, color 0.25s ease-out !defau border-top-color: $button-background; } } + + &.hollow { + &::after { + border-top-color: $button-background; + } + + @each $name, $color in $button-palette { + &.#{$name} { + &::after { + border-top-color: $color; + } + } + } + } } // Button with dropdown arrow only diff --git a/scss/settings/_settings.scss b/scss/settings/_settings.scss index 9f6743012..af784b6d6 100644 --- a/scss/settings/_settings.scss +++ b/scss/settings/_settings.scss @@ -618,4 +618,3 @@ $topbar-submenu-background: $topbar-background; $topbar-title-spacing: 0.5rem 1rem 0.5rem 0; $topbar-input-width: 200px; $topbar-unstack-breakpoint: medium; -