From ee5c7d7ece59f33108725979557d6b33850736ba Mon Sep 17 00:00:00 2001 From: Ben Word Date: Mon, 4 Mar 2013 13:03:05 -0600 Subject: [PATCH 1/2] 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 67e2ed68..740e4c13 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); From 92977fb13e6a837cd0bc31cb2003fce7c235bf4b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 7 Apr 2013 22:58:16 -0700 Subject: [PATCH 2/2] fixes #7503: don't do dat --- docs/docs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs.html b/docs/docs.html index 4506d5ae..0ae2198a 100644 --- a/docs/docs.html +++ b/docs/docs.html @@ -4809,7 +4809,7 @@ For example, <section> should be wrapped as inline.

Individual or compiled

-

Plugins can be included individually (though some have required dependencies), or all at once. Do attempt to include both. Both bootstrap.js and bootstrap.min.js contain all plugins in a single file.

+

Plugins can be included individually (though some have required dependencies), or all at once. Do not attempt to include both. Both bootstrap.js and bootstrap.min.js contain all plugins in a single file.

Data attributes

You can use all Bootstrap plugins purely through the markup API without writing a single line of JavaScript. This is Bootstrap's first class API and should be your first consideration when using a plugin.