-
Notifications
You must be signed in to change notification settings - Fork 425
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
v2 loading on search group not working #411
Comments
@longrunningprocess, I experimented more and I don't understand why it doesn't work. Probably due to the nature of the |
Not off the top of my head but if I figure it out I'll definitely let you know |
I just bumped into this bug too and did some digging. Apparently input[type=submit] is a 'replaced' element which cannot hold content. The ::before and ::after pseudo-elements are used to add content before or after an element's content. The only workaround to me seems to be applying a spinner background directly to the input element itself. |
I don't have a clean workaround. I might close this issue. |
No worries, maybe you could add a reference in the docs to this conversation? |
Isn't this happening because pico/scss/components/_loading.scss Line 10 in 6dc6489
I have the same problem. Setting Edit: I fixed it by just using a |
Please search for duplicate or closed issues first.
Describe the issue
It looks there might be a missing selector for the loading icon (https://github.com/picocss/pico/blob/v2/css/pico.css#L2347) which does not take into account
input[type=submit]
Current Behavior
Supplying the following html does not produce a loading indicator:
Expected Behavior
The loading indicator should appear on the
input[type=submit]
as it does for buttons.Reproduction URL
Simply adding the
aria-busy="true"
to the docs will reveal the bug.Environment
macOS, Chrome
The text was updated successfully, but these errors were encountered: