-
Notifications
You must be signed in to change notification settings - Fork 494
New issue
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
Change radio button outline on :focus from square to circle #278
Comments
why don't you use
would'nt it work? |
@rerfan24
The 2nd link in the OP is a jsfiddle showing this too |
can i work on this issue?? |
That's super weird, if anyone wants to make a PR I'll merge ASAP. Otherwise I can try to find time and fix this myself. |
Did some snooping around - I have absolutely no idea how to fix this. Gonna consider bring fully custom checkboxes back in a major 3.0 release. |
can't we just remove the shadow, it's not like it's something very important. |
Having a visual indicator that an item is focussed is important for users who use the tab key to cycle through inputs instead of using a mouse. |
It's quite easy to distinguish between a focused radio button and non focused one without an outline too. |
how? checked is not the same as focused. |
Please assign this issue to me. |
Im intrested in working on this issue. could you please assign this issue to me? |
Ideally this teal border should be circular:
It looks to me like water.css is using a
box-shadow
in place ofoutline
for the focus styling like described here, but this doesn't seem to work on radio buttons. The only work around I found was this answer with-webkit-appearance: inherit;
but this breaks the radio button appearance and requires some manual restyling.So I'm looking for discussion here on alternatives or viability of
-webkit-appearance: inherit;
before I make a PR.The text was updated successfully, but these errors were encountered: