aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-02-27 12:12:44 -0800
committerMark Otto <[email protected]>2014-02-27 12:12:44 -0800
commitce4175b65e85dbc6ed7333fa19534afc8be016c9 (patch)
tree321e85385159e606c5c361e1853e616dfbce78e2 /less
parent7aa813db5dc8f904029930f519f02b6912e11451 (diff)
parentb878491b9a76e2c85787e38e6cc878cd3dca909f (diff)
downloadbootstrap-ce4175b65e85dbc6ed7333fa19534afc8be016c9.tar.xz
bootstrap-ce4175b65e85dbc6ed7333fa19534afc8be016c9.zip
Merge pull request #12855 from lipis/patch-1
Added the very useful .animation-fill-mode() mixin
Diffstat (limited to 'less')
-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.