0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/less/responsive-utilities.less

78 lines
2.1 KiB
Plaintext
Raw Normal View History

2012-06-29 06:46:45 +02:00
//
// Responsive: Utility classes
// --------------------------------------------------
// 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;
}
// IE10 on Windows Phone 8
2013-04-22 03:25:49 +02:00
// IE10 on WP8 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
// Credit: HTML5 Boilerplate
.hidden {
display: none;
visibility: hidden;
}
// Visibility utilities
// For Phones
2013-05-13 06:00:37 +02:00
.visible-sm { display: inherit !important; }
.visible-md { display: none !important; }
.visible-lg { display: none !important; }
2013-05-13 06:00:37 +02:00
.hidden-sm { display: none !important; }
.hidden-md { display: inherit !important; }
.hidden-lg { display: inherit !important; }
2012-06-26 01:25:50 +02:00
// Tablets & small desktops only
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
2013-05-13 06:00:37 +02:00
.visible-sm { display: none !important; }
.visible-md { display: inherit !important; }
.visible-lg { display: none !important; }
2013-05-13 06:00:37 +02:00
.hidden-sm { display: inherit !important; }
.hidden-md { display: none !important; }
.hidden-lg { display: inherit !important; }
}
// For desktops
@media (min-width: @screen-desktop) {
2013-05-13 06:00:37 +02:00
.visible-sm { display: none !important; }
.visible-md { display: none !important; }
.visible-lg { display: inherit !important; }
2013-05-13 06:00:37 +02:00
.hidden-sm { display: inherit !important; }
.hidden-md { display: inherit !important; }
.hidden-lg { display: none !important; }
}
2013-02-06 07:17:28 +01:00
// Print utilities
2013-05-13 06:00:37 +02:00
.visible-print { display: none !important; }
.hidden-print { }
2013-02-06 07:17:28 +01:00
@media print {
.visible-print { display: inherit !important; }
.hidden-print { display: none !important; }
}