From 316f2a72aa48ba530b8587520fb9165a01362a9c Mon Sep 17 00:00:00 2001 From: Phil LaPier Date: Fri, 16 Mar 2012 18:14:17 -0400 Subject: [PATCH] Removed deprecated animation-basic mixin --- app/assets/stylesheets/css3/_animation.scss | 28 --------------------- 1 file changed, 28 deletions(-) diff --git a/app/assets/stylesheets/css3/_animation.scss b/app/assets/stylesheets/css3/_animation.scss index f99e06eb6..2e310f0c3 100644 --- a/app/assets/stylesheets/css3/_animation.scss +++ b/app/assets/stylesheets/css3/_animation.scss @@ -141,31 +141,3 @@ -moz-animation-fill-mode: $full; animation-fill-mode: $full; } - - -// Deprecated -@mixin animation-basic ($name, $time: 0, $motion: ease) { - $length-of-name: length($name); - $length-of-time: length($time); - $length-of-motion: length($motion); - - @if $length-of-name > 1 { - @include animation-name(zip($name)); - } @else { - @include animation-name( $name); - } - - @if $length-of-time > 1 { - @include animation-duration(zip($time)); - } @else { - @include animation-duration( $time); - } - - @if $length-of-motion > 1 { - @include animation-timing-function(zip($motion)); - } @else { - @include animation-timing-function( $motion); - } - @warn "The animation-basic mixin is deprecated. Use the animation mixin instead."; -} -