Commit 2cd8019e authored by Matthew Taylor's avatar Matthew Taylor

Add box shadow for focus state on checkboxes

Fixes #628 by applying the same outline for focus as is currently applied to checked boxes.
parent 11155c42
...@@ -20,12 +20,12 @@ ...@@ -20,12 +20,12 @@
&:checked, &:checked,
&:focus { &:focus {
transition: all .5s ease;
outline: none; outline: none;
box-shadow: 0 0 0 .25rem $active-gray;
} }
&:checked { &:checked {
transition: all .5s ease;
box-shadow: 0 0 0 .25rem $active-gray;
background-color: $ui-blue; background-color: $ui-blue;
text-align: center; text-align: center;
text-indent: .125rem; text-indent: .125rem;
......
Markdown is supported
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