mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-17 19:06:40 +02:00
Fixes #7577: Attempt to fix, at least, issues with Windows Phone 8 and responsive not kicking in correctly
This commit is contained in:
6
docs/assets/css/bootstrap.css
vendored
6
docs/assets/css/bootstrap.css
vendored
@@ -5300,6 +5300,12 @@ a.list-group-item.active > .badge,
|
|||||||
width: device-width;
|
width: device-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 400px) {
|
||||||
|
@-ms-viewport {
|
||||||
|
width: 320px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.hidden {
|
.hidden {
|
||||||
display: none;
|
display: none;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
|
@@ -5,11 +5,27 @@
|
|||||||
|
|
||||||
// IE10 Metro responsive
|
// IE10 Metro responsive
|
||||||
// Required for Windows 8 Metro split-screen snapping with IE10
|
// Required for Windows 8 Metro split-screen snapping with IE10
|
||||||
|
//
|
||||||
// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
|
// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
|
||||||
@-ms-viewport{
|
@-ms-viewport{
|
||||||
width: device-width;
|
width: device-width;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// IE10 on Windows Phone 8
|
||||||
|
// IE10 on WP8 screws doesn't report CSS pixels, but actual device pixels.
|
||||||
|
// In other words, say on a Lumia, you'll get 768px as the device width,
|
||||||
|
// meaning users will see the tablet styles and not phone styles.
|
||||||
|
//
|
||||||
|
// Alternatively you can override this with JS (see source below), but
|
||||||
|
// we won't be doing that here given our limited scope.
|
||||||
|
//
|
||||||
|
// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/
|
||||||
|
@media screen and (max-width: 400px) {
|
||||||
|
@-ms-viewport{
|
||||||
|
width: 320px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Hide from screenreaders and browsers
|
// Hide from screenreaders and browsers
|
||||||
// Credit: HTML5 Boilerplate
|
// Credit: HTML5 Boilerplate
|
||||||
.hidden {
|
.hidden {
|
||||||
|
Reference in New Issue
Block a user