We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Second, third, etc buttons in button groups don't get the outer box shadow on focus.
Can be fixed with
&:focus { box-shadow: 0 0 5px rgba(81,167,232,0.5), inset 1px 0 0 rgba(255,255,255,0.2); }
before the
&:active, &.selected { box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.15); }
in the _buttons.scss file (line 315ish).
_buttons.scss
The text was updated successfully, but these errors were encountered:
Fixes #53: Remove overrides to .btn shadow when in button groups to a…
cf5c30f
…void a lack of :focus shadow
Successfully merging a pull request may close this issue.
Second, third, etc buttons in button groups don't get the outer box shadow on focus.
Can be fixed with
before the
in the
_buttons.scss
file (line 315ish).The text was updated successfully, but these errors were encountered: