From b878491b9a76e2c85787e38e6cc878cd3dca909f Mon Sep 17 00:00:00 2001 From: Lipis Date: Wed, 26 Feb 2014 17:59:36 +0100 Subject: [PATCH] Added the very useful .animation-fill-mode() mixin I think that's the only animation property that was missing and it's quite useful. https://developer.mozilla.org/en-US/docs/Web/CSS/animation-fill-mode --- less/mixins.less | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/less/mixins.less b/less/mixins.less index 4432cfc2db..0b4cf88a93 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -243,6 +243,10 @@ -webkit-animation-direction: @direction; animation-direction: @direction; } +.animation-fill-mode(@fill-mode) { + -webkit-animation-fill-mode: @fill-mode; + animation-fill-mode: @fill-mode; +} // Backface visibility // Prevent browsers from flickering when using CSS 3D transforms.