From: eiselzby Date: Thu, 2 Jun 2016 17:04:20 +0000 (+0200) Subject: Remove unsupported vendor prefixes for @viewport (#19955) X-Git-Tag: v3.3.7~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7864eb4c5439e196185fc44a7040825624515555;p=thirdparty%2Fbootstrap.git Remove unsupported vendor prefixes for @viewport (#19955) Fixes #19871 --- diff --git a/docs/_includes/getting-started/browser-device-support.html b/docs/_includes/getting-started/browser-device-support.html index 8a3a155eed..33cacdc5fb 100644 --- a/docs/_includes/getting-started/browser-device-support.html +++ b/docs/_includes/getting-started/browser-device-support.html @@ -152,8 +152,6 @@ {% endhighlight %}

However, this doesn't work for devices running Windows Phone 8 versions older than Update 3 (a.k.a. GDR3), as it causes such devices to show a mostly desktop view instead of narrow "phone" view. To address this, you'll need to include the following CSS and JavaScript to work around the bug.

{% highlight scss %} -@-webkit-viewport { width: device-width; } -@-moz-viewport { width: device-width; } @-ms-viewport { width: device-width; } @-o-viewport { width: device-width; } @viewport { width: device-width; } diff --git a/docs/assets/css/ie10-viewport-bug-workaround.css b/docs/assets/css/ie10-viewport-bug-workaround.css index 8b3803b48d..4b9518e218 100644 --- a/docs/assets/css/ie10-viewport-bug-workaround.css +++ b/docs/assets/css/ie10-viewport-bug-workaround.css @@ -8,8 +8,6 @@ * See the Getting Started docs for more information: * http://getbootstrap.com/getting-started/#support-ie10-width */ -@-webkit-viewport { width: device-width; } -@-moz-viewport { width: device-width; } @-ms-viewport { width: device-width; } @-o-viewport { width: device-width; } @viewport { width: device-width; }