// Scale up controls for tablets and up
-@media screen and (min-width: @screen-tablet) {
+@media screen and (min-width: @screen-sm) {
// Scale up the controls a smidge
.carousel-control .icon-prev,
.form-inline {
// Kick in the inline
- @media (min-width: @screen-tablet) {
+ @media (min-width: @screen-sm) {
// Inline-block all the things for "inline"
.form-group {
display: inline-block;
}
// Only right align form labels here when the columns stop stacking
- @media (min-width: @screen-tablet) {
+ @media (min-width: @screen-sm) {
.control-label {
text-align: right;
}
// Note that `.col-sm-12` doesn't get floated on purpose—there's no need since
// it's full-width.
-@media (min-width: @screen-tablet) {
+@media (min-width: @screen-sm) {
.container {
max-width: @container-tablet;
}
// Note that `.col-md-12` doesn't get floated on purpose—there's no need since
// it's full-width.
-@media (min-width: @screen-desktop) {
+@media (min-width: @screen-md) {
.container {
max-width: @container-desktop;
}
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
}
- @media screen and (min-width: @screen-tablet) {
+ @media screen and (min-width: @screen-sm) {
padding-top: (@jumbotron-padding * 1.6);
padding-bottom: (@jumbotron-padding * 1.6);
}
// Scale up the modal
-@media screen and (min-width: @screen-tablet) {
+@media screen and (min-width: @screen-sm) {
.modal-dialog {
left: 50%;
// Extra small screen / phone
@screen-xs: 480px;
-@screen-phone: @screen-xs;
+@screen-phone: @screen-xs;// NOTE: Deprecated in favor of @screen-xs
// Small screen / tablet
@screen-sm: 768px;
-@screen-tablet: @screen-sm;
+@screen-tablet: @screen-sm;// NOTE: Deprecated in favor of @screen-sm
// Medium screen / desktop
@screen-md: 992px;
-@screen-desktop: @screen-md;
+@screen-desktop: @screen-md;// NOTE: Deprecated in favor of @screen-md
// Large screen / wide desktop
@screen-lg: 1200px;
-@screen-lg-desktop: @screen-lg;
+@screen-lg-desktop: @screen-lg;// NOTE: Deprecated in favor of @screen-lg
// So media queries don't overlap when required, provide a maximum
@screen-xs-max: (@screen-sm - 1);
// Padding, to be divided by two and applied to the left and right of all columns
@grid-gutter-width: 30px;
// Point at which the navbar stops collapsing
-@grid-float-breakpoint: @screen-tablet;
+@grid-float-breakpoint: @screen-sm;
// Navbar