-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
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
Growing spinners show as blank in Safari #30493
Comments
@MartijnCuppens can you reproduce? |
Nope, not in Safari 13.0. Don't have a 13.1 available |
It seems BrowserStack only has Safari 13.0.2 on Catalina, so I can't reproduce either. |
I can reproduce the issue on Safari 13.1 on Catalina 10.15.4. Btw: Safari 13.1 shows the "-webkit-animation" rule crossed out and the "animation" rule is applied. Does this apply to Safari 13.1 only? |
That's probably because they support the unprefixed property in the new version (is my guess, at least). That being said, I personally don't have any Apple machines to test. So, I can't tell if it's a browser issue or if there's something we could do ourselves. If it's a browser issue, someone should report it. |
Might be caused by the missing Might be worth re-adding that state if it fixes the issue. |
I added a |
Of course I toggled my reduce motion setting but no effects. |
First thing I tried too 😛 Weird that the spinners do work |
I have the same problem: |
Growing spinners show as blank in Bootstrap v4.4.x, v4.3.x, and v4.2.x aren't displayed in MacOSX/Safari. The issue is present in: *They do display correctly in both MacOSX versions using While looking at the generated @keyframes spinner-grow {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
}
} Adding @keyframes spinner-grow {
0% {
-webkit-transform: scale(0);
transform: scale(0);
}
50% {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
} The proposed changes were tested successfully under the mentioned MacOSX / Safari and Chrome version mentioned before. Below codepen reduced test case: |
No need to further tests or anything, there's been a PR open for a bit now :). See #30504. |
FYI-- |
issue persists on safari Version 14.0 (15610.1.28.1.9, 15610) |
I just added the following to my CSS. It's based on @asolis suggestion above, but it doesn't "stick" at the end on Safari:
|
Using a previously affected old version of bootstrap v4, this issue has been fixed by updating to iOS 15.4 |
Steps to reproduce:
Using OS / browsers listed below, insert
.spinner-grow
in your project, or visit Boostrap’s growing spinner doc.macOS Catalina 10.15.4
Safari 13.1 / Safari Technology Preview 13.2
The text was updated successfully, but these errors were encountered: