aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-10-01 15:26:17 -0700
committerMark Otto <[email protected]>2012-10-01 15:26:17 -0700
commitd36e37214b718ed27a49f49ac4c6e72f373cbd0c (patch)
tree7bdcbe89a230c68497a0b3f5eb21f47df54a1ebe
parent86d5ed6f4f688f8aa67a26c9b1f664123edf716f (diff)
downloadbootstrap-d36e37214b718ed27a49f49ac4c6e72f373cbd0c.tar.xz
bootstrap-d36e37214b718ed27a49f49ac4c6e72f373cbd0c.zip
fixes #5319: add backface-visibility for webkit skewing
-rw-r--r--less/mixins.less1
1 files changed, 1 insertions, 0 deletions
diff --git a/less/mixins.less b/less/mixins.less
index 1466696bc..98aa2b8a5 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -297,6 +297,7 @@
-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);