apply same active/focus shadow styling to button variants

This commit is contained in:
Mark Otto 2017-12-27 16:43:37 -08:00 committed by Mark Otto
parent afc984dca7
commit 1a4a94bfd9
1 changed files with 7 additions and 5 deletions

View File

@ -42,11 +42,13 @@
}
border-color: $active-border;
// Avoid using mixin so we can pass custom focus shadow properly
@if $enable-shadows {
box-shadow: $btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($border, .5);
} @else {
box-shadow: 0 0 0 $btn-focus-width rgba($border, .5);
&:focus {
// Avoid using mixin so we can pass custom focus shadow properly
@if $enable-shadows {
box-shadow: $btn-active-box-shadow, 0 0 0 $btn-focus-width rgba($border, .5);
} @else {
box-shadow: 0 0 0 $btn-focus-width rgba($border, .5);
}
}
}
}