1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-14 01:24:19 +02:00

properly pass focus shadow should you enable shadows

don't implement for the outline style because outline buttons get no shadow by default
This commit is contained in:
Mark Otto
2016-12-27 14:50:33 -08:00
committed by Mark Otto
parent b449e6b65e
commit e38c3506e3

View File

@@ -20,8 +20,13 @@
}
&:focus,
&.focus {
// Avoid using mixin so we can pass custom focus shadow properly
@if $enable-shadows {
box-shadow: $btn-box-shadow, 0 0 0 2px rgba($border, .5);
} @else {
box-shadow: 0 0 0 2px rgba($border, .5);
}
}
// Disabled comes first so active can properly restyle
&.disabled,