Skip to content

Commit

Permalink
Remove -ms-transition
Browse files Browse the repository at this point in the history
It's worth noting as well that there isn't an -ms- prefix on these
properties. IE10 was the first browser to ship without a prefix on
these. The betas of IE10 did use the prefix however, so you may see
code using -ms-. It's not needed though.
  • Loading branch information
Patrick Burtchaell committed Jun 9, 2014
1 parent 81ad2c0 commit f31fb4a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions styles/mixins/transition.less
Original file line number Diff line number Diff line change
@@ -1,30 +1,26 @@
.transition(...) {
-webkit-transition-property: @arguments;
-moz-transition-property: @arguments;
-ms-transition-property: @arguments;
-o-transition-property: @arguments;
transition-property: @arguments;
}
.transition-property(...) {
-webkit-transition-property: @arguments;
-moz-transition-property: @arguments;
-ms-transition-property: @arguments;
-o-transition-property: @arguments;
transition-property: @arguments;
}

.transition-duration(...) {
-webkit-transition-duration: @arguments;
-moz-transition-duration: @arguments;
-ms-transition-duration: @arguments;
-o-transition-duration: @arguments;
transition-duration: @arguments;
}

.transition-timing-function(...) {
-webkit-transition-timing-function: @arguments;
-moz-transition-timing-function: @arguments;
-ms-transition-timing-function: @arguments;
-o-transition-timing-function: @arguments;
transition-timing-function: @arguments;
}
Expand Down

0 comments on commit f31fb4a

Please sign in to comment.