2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-17 19:21:23 +03:00

Fixes #17300: drop the unused at-viewports

This commit is contained in:
Mark Otto
2016-02-06 18:45:56 -08:00
parent b8ff763d62
commit de944e088b
9 changed files with 7 additions and 37 deletions
-12
View File
@@ -298,22 +298,10 @@ html {
box-sizing: inherit; box-sizing: inherit;
} }
@-moz-viewport {
width: device-width;
}
@-ms-viewport { @-ms-viewport {
width: device-width; width: device-width;
} }
@-webkit-viewport {
width: device-width;
}
@viewport {
width: device-width;
}
html { html {
font-size: 16px; font-size: 16px;
-ms-overflow-style: scrollbar; -ms-overflow-style: scrollbar;
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
-12
View File
@@ -298,22 +298,10 @@ html {
box-sizing: inherit; box-sizing: inherit;
} }
@-moz-viewport {
width: device-width;
}
@-ms-viewport { @-ms-viewport {
width: device-width; width: device-width;
} }
@-webkit-viewport {
width: device-width;
}
@viewport {
width: device-width;
}
html { html {
font-size: 16px; font-size: 16px;
-ms-overflow-style: scrollbar; -ms-overflow-style: scrollbar;
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1 -7
View File
@@ -46,14 +46,8 @@ html {
// //
// Wrap `@viewport` with `@at-root` for when folks do a nested import (e.g., // Wrap `@viewport` with `@at-root` for when folks do a nested import (e.g.,
// `.class-name { @import "bootstrap"; }`). // `.class-name { @import "bootstrap"; }`).
//
// Includes future-proofed vendor prefixes as well.
@at-root { @at-root {
@-moz-viewport { width: device-width; } @-ms-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@-webkit-viewport { width: device-width; }
@viewport { width: device-width; }
} }