From 847b632577ee46f2acf0b0778c5a3014428cb528 Mon Sep 17 00:00:00 2001
From: Mark Otto <otto@github.com>
Date: Mon, 10 Dec 2012 10:29:16 -0800
Subject: [PATCH] IE10 fix in responsive utilities, not regular utilities

---
 docs/assets/css/bootstrap-responsive.css | 4 ++++
 docs/assets/css/bootstrap.css            | 4 ----
 less/responsive-utilities.less           | 7 +++++++
 less/utilities.less                      | 7 -------
 4 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/docs/assets/css/bootstrap-responsive.css b/docs/assets/css/bootstrap-responsive.css
index 04ba99554d..3b82569da5 100644
--- a/docs/assets/css/bootstrap-responsive.css
+++ b/docs/assets/css/bootstrap-responsive.css
@@ -40,6 +40,10 @@
           box-sizing: border-box;
 }
 
+@-ms-viewport {
+  width: device-width;
+}
+
 .hidden {
   display: none;
   visibility: hidden;
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 0e9f0cdf6f..53f3a8cb1a 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -6014,10 +6014,6 @@ a.badge:hover {
   line-height: 30px;
 }
 
-@-ms-viewport {
-  width: device-width;
-}
-
 .pull-right {
   float: right;
 }
diff --git a/less/responsive-utilities.less b/less/responsive-utilities.less
index 2c3f6c15fe..1ed1a13696 100644
--- a/less/responsive-utilities.less
+++ b/less/responsive-utilities.less
@@ -3,6 +3,13 @@
 // --------------------------------------------------
 
 
+// IE10 Metro responsive
+// Required for Windows 8 Metro split-screen snapping with IE10
+// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
+@-ms-viewport{
+  width: device-width;
+}
+
 // Hide from screenreaders and browsers
 // Credit: HTML5 Boilerplate
 .hidden {
diff --git a/less/utilities.less b/less/utilities.less
index 2fbc6e02d3..314b4ffdb4 100644
--- a/less/utilities.less
+++ b/less/utilities.less
@@ -3,13 +3,6 @@
 // --------------------------------------------------
 
 
-// IE10 Metro responsive
-// Required for Windows 8 Metro split-screen snapping with IE10
-// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
-@-ms-viewport{
-  width: device-width;
-}
-
 // Quick floats
 .pull-right {
   float: right;
-- 
GitLab