From: Mark Otto Date: Wed, 27 Dec 2017 00:49:35 +0000 (-0800) Subject: fix mixin include X-Git-Tag: v4.0.0-beta.3~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=902390948440ba69388b31cd67966c3095ad81a4;p=thirdparty%2Fbootstrap.git fix mixin include --- diff --git a/scss/_buttons.scss b/scss/_buttons.scss index a9216ced7a..b2b6a1740a 100644 --- a/scss/_buttons.scss +++ b/scss/_buttons.scss @@ -40,10 +40,10 @@ &:not([disabled]):not(.disabled):active, &:not([disabled]):not(.disabled).active { background-image: none; - box-shadow: $btn-active-box-shadow; + @include box-shadow($btn-active-box-shadow); &:focus { - @box-shadow: $btn-focus-box-shadow, $btn-active-box-shadow; + @include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow); } } }