From d1dd1fcdee3a081dc2aa9874ba20ae5584652a01 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 28 Oct 2013 11:07:56 -0700 Subject: [PATCH 1/3] add warning about Respond.js not supporting @import; fixes #11143 --- getting-started.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/getting-started.html b/getting-started.html index ec3462f0e2..9eb820dffb 100644 --- a/getting-started.html +++ b/getting-started.html @@ -713,6 +713,10 @@ bootstrap/

Respond.js and file://

Due to browser security rules, Respond.js doesn't work with pages viewed via the file:// protocol (like when opening a local HTML file). To test responsive features in IE8, view your pages over HTTP(S). See the Respond.js docs for details.

+
+

Respond.js and @import

+

Respond.js doesn't work with CSS that's referenced via @import. In particular, some Drupal configurations are known to use @import. See the Respond.js docs for details.

+
From 4b8c66269894b3110ca74815dff134af7713d463 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 28 Oct 2013 21:19:09 -0700 Subject: [PATCH 2/3] use regular text, not callouts --- getting-started.html | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/getting-started.html b/getting-started.html index 9eb820dffb..fbed75ec79 100644 --- a/getting-started.html +++ b/getting-started.html @@ -705,18 +705,6 @@ bootstrap/

Internet Explorer 8 and 9

Internet Explorer 8 and 9 are also supported, however, please be aware that some CSS3 properties and HTML5 elements are not fully supported by these browsers. In addition, Internet Explorer 8 requires the use of Respond.js to enable media query support.

-
-

Respond.js and cross-domain CSS

-

Using Respond.js with CSS hosted on a different (sub)domain (for example, on a CDN) requires some additional setup. See the Respond.js docs for details.

-
-
-

Respond.js and file://

-

Due to browser security rules, Respond.js doesn't work with pages viewed via the file:// protocol (like when opening a local HTML file). To test responsive features in IE8, view your pages over HTTP(S). See the Respond.js docs for details.

-
-
-

Respond.js and @import

-

Respond.js doesn't work with CSS that's referenced via @import. In particular, some Drupal configurations are known to use @import. See the Respond.js docs for details.

-
@@ -758,6 +746,15 @@ bootstrap/

Visit Can I use... for details on browser support of CSS3 and HTML5 features.

+

Internet Explorer 8 and Respond.js

+

Using Respond.js does not come without some caveats. Be aware of the following when using it in your development and production environments for Internet Explorer 8.

+

Respond.js and cross-domain CSS

+

Using Respond.js with CSS hosted on a different (sub)domain (for example, on a CDN) requires some additional setup. See the Respond.js docs for details.

+

Respond.js and file://

+

Due to browser security rules, Respond.js doesn't work with pages viewed via the file:// protocol (like when opening a local HTML file). To test responsive features in IE8, view your pages over HTTP(S). See the Respond.js docs for details.

+

Respond.js and @import

+

Respond.js doesn't work with CSS that's referenced via @import. In particular, some Drupal configurations are known to use @import. See the Respond.js docs for details.

+

Internet Explorer 8 and box-sizing

IE8 does not fully support box-sizing: border-box; when combined with min-width, max-width, min-height, or max-height. For that reason, as of v3.0.1, we no longer use max-width on .containers.

From 96d7d4a489ef937657ba235dc384f92ef6c5a76e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 28 Oct 2013 21:48:57 -0700 Subject: [PATCH 3/3] edit --- getting-started.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started.html b/getting-started.html index fbed75ec79..8d26760ebd 100644 --- a/getting-started.html +++ b/getting-started.html @@ -747,7 +747,7 @@ bootstrap/

Visit Can I use... for details on browser support of CSS3 and HTML5 features.

Internet Explorer 8 and Respond.js

-

Using Respond.js does not come without some caveats. Be aware of the following when using it in your development and production environments for Internet Explorer 8.

+

Beware of the following caveats when using Respond.js in your development and production environments for Internet Explorer 8.

Respond.js and cross-domain CSS

Using Respond.js with CSS hosted on a different (sub)domain (for example, on a CDN) requires some additional setup. See the Respond.js docs for details.

Respond.js and file://