diff options
| author | Mark Otto <[email protected]> | 2012-12-10 10:29:16 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-12-10 10:29:16 -0800 |
| commit | 847b632577ee46f2acf0b0778c5a3014428cb528 (patch) | |
| tree | 75d2ce1217446ca190c2edc03ba15ae0f828e28a /less | |
| parent | e324a1beb0d07a3b117e92c608daec591f8587de (diff) | |
| download | bootstrap-847b632577ee46f2acf0b0778c5a3014428cb528.tar.xz bootstrap-847b632577ee46f2acf0b0778c5a3014428cb528.zip | |
IE10 fix in responsive utilities, not regular utilities
Diffstat (limited to 'less')
| -rw-r--r-- | less/responsive-utilities.less | 7 | ||||
| -rw-r--r-- | less/utilities.less | 7 |
2 files changed, 7 insertions, 7 deletions
diff --git a/less/responsive-utilities.less b/less/responsive-utilities.less index 2c3f6c15f..1ed1a1369 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 2fbc6e02d..314b4ffdb 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; |
