Skip to content
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

Bootstrap v4.x Growing spinner show as blank in MacOSX/Safari #30530

Closed
asolis opened this issue Apr 8, 2020 · 1 comment
Closed

Bootstrap v4.x Growing spinner show as blank in MacOSX/Safari #30530

asolis opened this issue Apr 8, 2020 · 1 comment

Comments

@asolis
Copy link

asolis commented Apr 8, 2020

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:
MacOSX ( High Sierra 10.13.6) with Safari (v13.1)
MacOSX ( Catalina 10.15.4) with Safari (v13.1)

*They do display correctly in both MacOSX versions using
Chrome (Version 80.0.3987.163 (Official Build) (64-bit))

While looking at the generated @keyframe spinner-grow CSS rule in Bootstrap v4.4, v4.3, and v4.2 .
They currently display the following:

@keyframes spinner-grow {
 0% {
      -webkit-transform: scale(0);
      transform: scale(0);
 }
 50% {
     opacity: 1; 
 }
}

Adding transform:scale(1) at 50% fixes the issue.

@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:

CodePen Reduced Test Case

@XhmikosR
Copy link
Member

XhmikosR commented Apr 8, 2020

Duplicate of #30493

@XhmikosR XhmikosR marked this as a duplicate of #30493 Apr 8, 2020
@XhmikosR XhmikosR closed this as completed Apr 8, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants