// Vendor Prefixes // // All vendor mixins are deprecated as of v3.2.0 due to the introduction of // Autoprefixer in our Gruntfile. They will be removed in v4. // - Animations // - Backface visibility // - Box shadow // - Box sizing // - Content columns // - Hyphens // - Placeholder text // - Transformations // - Transitions // - User Select // - cursor grab // Animations @mixin animation($animation){-webkit-animation:$animation;-o-animation:$animation;animation:$animation}@mixin animation-name($name){-webkit-animation-name:$name;animation-name:$name}@mixin animation-duration($duration){-webkit-animation-duration:$duration;animation-duration:$duration}@mixin animation-timing-function($timing-function){-webkit-animation-timing-function:$timing-function;animation-timing-function:$timing-function}@mixin animation-delay($delay){-webkit-animation-delay:$delay;animation-delay:$delay}@mixin animation-iteration-count($iteration-count){-webkit-animation-iteration-count:$iteration-count;animation-iteration-count:$iteration-count}@mixin animation-direction($direction){-webkit-animation-direction:$direction;animation-direction:$direction}@mixin animation-fill-mode($fill-mode){-webkit-animation-fill-mode:$fill-mode;animation-fill-mode:$fill-mode}@mixin keyframes($name){@-webkit-keyframes #{$name;}but can be changed to `hidden` @mixin backface-visibility($visibility){-webkit-backface-visibility:$visibility;-moz-backface-visibility:$visibility;backface-visibility:$visibility}
