]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
fixes #4885: correct use of skew in .skew() mixin for FF
authorMark Otto <markotto@twitter.com>
Tue, 4 Sep 2012 18:08:08 +0000 (11:08 -0700)
committerMark Otto <markotto@twitter.com>
Tue, 4 Sep 2012 18:08:08 +0000 (11:08 -0700)
less/mixins.less

index 295f192287d6eade39cecc0b4ca9e3e14dae36e9..67f1c0af7233c34361542cf32f4ed8f79655e411 100644 (file)
 .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);
 }