diff options
| author | Ben Word <[email protected]> | 2013-03-04 13:03:05 -0600 |
|---|---|---|
| committer | Ben Word <[email protected]> | 2013-03-04 13:03:05 -0600 |
| commit | ee5c7d7ece59f33108725979557d6b33850736ba (patch) | |
| tree | a3f30ea43c15707258c348199f96fbda52a27182 | |
| parent | bfdc6f860710d434775982e1e47704c174314970 (diff) | |
| download | bootstrap-ee5c7d7ece59f33108725979557d6b33850736ba.tar.xz bootstrap-ee5c7d7ece59f33108725979557d6b33850736ba.zip | |
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.
| -rw-r--r-- | less/mixins.less | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/less/mixins.less b/less/mixins.less index 67e2ed689..740e4c136 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); |
