Commit 97cfe5a5 authored by Mark Otto's avatar Mark Otto Committed by Mark Otto
Browse files

Only apply the active and focus shadow on the focus state for :active

parent c0129f8c
Showing with 5 additions and 1 deletion
+5 -1
......@@ -40,7 +40,11 @@
&:not([disabled]):not(.disabled):active,
&:not([disabled]):not(.disabled).active {
background-image: none;
@include box-shadow($btn-focus-box-shadow, $btn-active-box-shadow);
box-shadow: $btn-active-box-shadow;
&:focus {
@box-shadow: $btn-focus-box-shadow, $btn-active-box-shadow;
}
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment