aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--less/mixins.less4
1 files changed, 4 insertions, 0 deletions
diff --git a/less/mixins.less b/less/mixins.less
index 66fd041f6..cb3b12968 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.