Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit f780beb

Browse files
author
Robert Messerle
committed
fix(progressCircular): fixes animation bug when used inside md-dialog
Closes #5039
1 parent 4f3c5d9 commit f780beb

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/components/progressCircular/progress-circular.scss

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ md-progress-circular {
1717
margin-bottom: 0 !important;
1818

1919
transform: scale(0.5);
20+
z-index: $z-index-progress-circular; // Used to fix a Chrome bug with spinner animation
2021

2122
.md-spinner-wrapper {
2223
display:block;

src/core/style/variables.scss

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ $z-index-scroll-mask: 65 !default;
8383
$z-index-sidenav: 60 !default;
8484
$z-index-backdrop: 50 !default;
8585
$z-index-fab: 20 !default;
86+
$z-index-progress-circular: 2 !default; // Used to fix animation bug in Chrome
8687

8788
// Easing Curves
8889
//--------------------------------------------

0 commit comments

Comments
 (0)