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

Commit

Permalink
fix(progressCircular): fixes animation in IE11
Browse files Browse the repository at this point in the history
Closes #387
  • Loading branch information
Robert Messerle committed Apr 8, 2015
1 parent 15d1db7 commit d5b77bd
Showing 1 changed file with 22 additions and 9 deletions.
31 changes: 22 additions & 9 deletions src/components/progressCircular/progressCircular.scss
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,6 @@ md-progress-circular {
$i: $i + 1;
}

&:not([md-mode=indeterminate]) {
.md-inner {
.md-left, .md-right {
.md-half-circle {
}
}
}
}

&[md-mode=indeterminate] {
.md-spinner-wrapper {
animation: outer-rotate $progress-circular-outer-duration linear infinite;
Expand All @@ -157,3 +148,25 @@ md-progress-circular {
}
}
}

.ng-hide md-progress-circular,
md-progress-circular.ng-hide {
&[md-mode=indeterminate] {
.md-spinner-wrapper {
animation: none;
.md-inner {
animation: none;
.md-left {
.md-half-circle {
animation-name: none;
}
}
.md-right {
.md-half-circle {
animation-name: none;
}
}
}
}
}
}

0 comments on commit d5b77bd

Please sign in to comment.