From: Lipis Date: Wed, 26 Feb 2014 16:59:36 +0000 (+0100) Subject: Added the very useful .animation-fill-mode() mixin X-Git-Tag: v3.2.0~426^2~6^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b878491b9a76e2c85787e38e6cc878cd3dca909f;p=thirdparty%2Fbootstrap.git 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 --- 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.