Skip to content

Commit

Permalink
(less) fixes twbs#4885: correct use of skew in .skew() mixin for FF
Browse files Browse the repository at this point in the history
  • Loading branch information
mdo committed Sep 4, 2012
1 parent 79cb5b8 commit 26e9a2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mixins.less
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@
.skew(@x, @y) {
-webkit-transform: skew(@x, @y);
-moz-transform: skew(@x, @y);
-ms-transform: skew(@x, @y);
-ms-transform: skewX(@x) skewY(@y); // See https://github.com/twitter/bootstrap/issues/4885
-o-transform: skew(@x, @y);
transform: skew(@x, @y);
}
Expand Down

0 comments on commit 26e9a2f

Please sign in to comment.