Commit d9e991fe authored by Mark Otto's avatar Mark Otto

Merge pull request #10059 from felixhirschfeld/patch-1

Add mixin for transition-property
parents c7db8ead c52e1b85
......@@ -128,6 +128,10 @@
-webkit-transition: @transition;
transition: @transition;
}
.transition-property(@transition-property) {
-webkit-transition-property: @transition-property;
transition-property: @transition-property;
}
.transition-delay(@transition-delay) {
-webkit-transition-delay: @transition-delay;
transition-delay: @transition-delay;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment