Skip to content

Commit

Permalink
Remove ripple loading mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
javivelasco committed Dec 6, 2015
1 parent 5afbaf5 commit a2e504f
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions components/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -251,24 +251,3 @@
transition-timing-function: $animation-curve-default;
transition-duration: $duration;
}

// The frames are this way to prevent a flicker in Safari
// See https://goo.gl/5luFDk
@mixin ripple-loading($name, $width, $height, $opacity: 0.3) {
@keyframes #{$name} {
0% {
opacity: $opacity;
transform: translate3d(-50%, -50%, 0) scale(0);
}

95% {
opacity: 0;
transform: translate3d(-50%, -50%, 0) scale(1);
}

100% {
opacity: 0;
transform: translate3d(-50%, -50%, 0) scale(0);
}
}
}

0 comments on commit a2e504f

Please sign in to comment.