Add box shadow for focus state on checkboxes

Fixes #628 by applying the same outline for focus as is currently applied to checked boxes.
This commit is contained in:
Matthew Taylor 2016-07-05 11:37:12 -04:00
parent 11155c429e
commit 2cd8019ef6

View file

@ -20,12 +20,12 @@
&:checked,
&:focus {
transition: all .5s ease;
outline: none;
box-shadow: 0 0 0 .25rem $active-gray;
}
&:checked {
transition: all .5s ease;
box-shadow: 0 0 0 .25rem $active-gray;
background-color: $ui-blue;
text-align: center;
text-indent: .125rem;