From bf6742f3d18e0b841557207e73a9c2de5abd11a9 Mon Sep 17 00:00:00 2001 From: canterberrie Date: Mon, 6 Feb 2017 15:59:41 -0800 Subject: [PATCH] fixes #8404hollow button dropdown arrow --- scss/components/_button.scss | 14 ++++++++++++++ scss/settings/_settings.scss | 1 - 2 files changed, 14 insertions(+), 1 deletion(-) 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; - -- 2.47.3