aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-09-04 11:08:08 -0700
committerMark Otto <[email protected]>2012-09-04 11:08:08 -0700
commita1d2ee654209305f20a621c4956417463d4cb00f (patch)
tree6400f695a195b4c8025fa099e550087f8444736f
parentde36456f5d3498320fae6e2ad106a9a7f38910cc (diff)
downloadbootstrap-a1d2ee654209305f20a621c4956417463d4cb00f.tar.xz
bootstrap-a1d2ee654209305f20a621c4956417463d4cb00f.zip
fixes #4885: correct use of skew in .skew() mixin for FF
-rw-r--r--less/mixins.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/less/mixins.less b/less/mixins.less
index 295f19228..67f1c0af7 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -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);
}