From: Ben Word Date: Mon, 4 Mar 2013 19:03:05 +0000 (-0600) Subject: Remove -webkit-backface-visibility on skew mixin X-Git-Tag: v3.0.0-rc1~461^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7148%2Fhead;p=thirdparty%2Fbootstrap.git Remove -webkit-backface-visibility on skew mixin Ref #5319 - This rule is causing pixelated edges on iOS. Removing it makes everything smooth across all OS's, browsers, and devices. --- diff --git a/less/mixins.less b/less/mixins.less index 67e2ed689a..740e4c1367 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -212,7 +212,6 @@ -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twitter/bootstrap/issues/4885 -o-transform: skew(@x, @y); transform: skew(@x, @y); - -webkit-backface-visibility: hidden; // See https://github.com/twitter/bootstrap/issues/5319 } .translate3d(@x, @y, @z) { -webkit-transform: translate3d(@x, @y, @z);