From ee5c7d7ece59f33108725979557d6b33850736ba Mon Sep 17 00:00:00 2001
From: Ben Word <ben@benword.com>
Date: Mon, 4 Mar 2013 13:03:05 -0600
Subject: [PATCH] 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.
---
 less/mixins.less | 1 -
 1 file changed, 1 deletion(-)

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);
-- 
GitLab