diff --git a/less/mixins.less b/less/mixins.less
index 4432cfc2dbb9413823f852fc1b6253c026d62860..0b4cf88a93a0e622f97aa9cea5cabdefb5a1ae81 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.