-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
fix(progress-spinner): rotating circle changing surrounding layout #16930
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
When the progress spinner is rotating its layout can outside that of the parent which can have an effect on scroll bars. These changes put the rotating animation on the `svg` node and make the component host `overflow: hidden`. Fixes angular#16894.
b6ae845
to
ae742cb
Compare
Is there any hope to move this forward? We've tried to use |
For some reason I missed the comment from a couple of months ago. Bumping the priority. |
…om affecting surrounding layout Similar to angular#16930. Prevents the indeterminate animation from overflowing the host node and affecting the page layout.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
When the progress spinner is rotating its layout can outside that of the parent which can have an effect on scroll bars. These changes put the rotating animation on the
svg
node and make the component hostoverflow: hidden
.Fixes #16894.