// The clickable button for toggling the menu
// Remove the gradient and set the same inset shadow as the :active state
.btn-group.open .dropdown-toggle {
- @include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
+ @include box-shadow($btn-active-box-shadow);
// Show no shadow for `.btn-link` since it has no other button styles.
&.btn-link {
&.active {
background-image: none;
outline: 0;
- @include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
+ @include box-shadow($btn-active-box-shadow);
}
&.disabled,
$btn-padding-x: 1rem !default;
$btn-padding-y: .375rem !default;
$btn-font-weight: normal !default;
+$btn-active-box-shadow: inset 0 3px 5px rgba(0,0,0,.125) !default;
$btn-primary-color: #fff !default;
$btn-primary-bg: $brand-primary !default;
border-color: $active-border;
// Remove the gradient for the pressed/active state
background-image: none;
- @include box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
+ @include box-shadow($btn-active-box-shadow);
&:hover,
&:focus,