Commit 94a3d4eb authored by Mark Otto's avatar Mark Otto

reorder media queries

parent 8c2db7d7
This diff is collapsed.
// UP TO LANDSCAPE PHONE
// ---------------------
@media (max-width: 480px) {
// Smooth out the collapsing/expanding nav
.nav-collapse {
-webkit-transform: translate3d(0, 0, 0); // activate the GPU
}
// Block level the page header small tag for readability
.page-header h1 small {
display: block;
line-height: @baseLineHeight;
}
// Update checkboxes for iOS
input[type="checkbox"],
input[type="radio"] {
border: 1px solid #ccc;
}
// Remove the horizontal form styles
.form-horizontal .control-group > label {
float: none;
width: auto;
padding-top: 0;
text-align: left;
}
// Move over all input controls and content
.form-horizontal .controls {
margin-left: 0;
}
// Move the options list down to align with labels
.form-horizontal .control-list {
padding-top: 0; // has to be padding because margin collaspes
}
// Move over buttons in .form-actions to align with .controls
.form-horizontal .form-actions {
padding-left: 10px;
padding-right: 10px;
}
// Modals
.modal {
position: fixed;
top: 10px;
left: 10px;
right: 10px;
width: auto;
margin: 0;
&.fade.in { top: auto; }
}
.modal-header .close {
padding: 10px;
margin: -10px;
}
// Carousel
.carousel-caption {
position: static;
}
}
// LANDSCAPE PHONE TO SMALL DESKTOP & PORTRAIT TABLET // LANDSCAPE PHONE TO SMALL DESKTOP & PORTRAIT TABLET
// -------------------------------------------------- // --------------------------------------------------
...@@ -147,3 +80,70 @@ ...@@ -147,3 +80,70 @@
} }
} }
// UP TO LANDSCAPE PHONE
// ---------------------
@media (max-width: 480px) {
// Smooth out the collapsing/expanding nav
.nav-collapse {
-webkit-transform: translate3d(0, 0, 0); // activate the GPU
}
// Block level the page header small tag for readability
.page-header h1 small {
display: block;
line-height: @baseLineHeight;
}
// Update checkboxes for iOS
input[type="checkbox"],
input[type="radio"] {
border: 1px solid #ccc;
}
// Remove the horizontal form styles
.form-horizontal .control-group > label {
float: none;
width: auto;
padding-top: 0;
text-align: left;
}
// Move over all input controls and content
.form-horizontal .controls {
margin-left: 0;
}
// Move the options list down to align with labels
.form-horizontal .control-list {
padding-top: 0; // has to be padding because margin collaspes
}
// Move over buttons in .form-actions to align with .controls
.form-horizontal .form-actions {
padding-left: 10px;
padding-right: 10px;
}
// Modals
.modal {
position: fixed;
top: 10px;
left: 10px;
right: 10px;
width: auto;
margin: 0;
&.fade.in { top: auto; }
}
.modal-header .close {
padding: 10px;
margin: -10px;
}
// Carousel
.carousel-caption {
position: static;
}
}
...@@ -18,24 +18,24 @@ ...@@ -18,24 +18,24 @@
.hidden-tablet { } .hidden-tablet { }
.hidden-desktop { display: none !important; } .hidden-desktop { display: none !important; }
// Phones only // Tablets & small desktops only
@media (max-width: 767px) { @media (min-width: 768px) and (max-width: 979px) {
// Show // Show
.visible-phone { display: inherit !important; } // Use inherit to restore previous behavior .visible-tablet { display: inherit !important; }
// Hide // Hide
.hidden-phone { display: none !important; } .hidden-tablet { display: none !important; }
// Hide everything else // Hide everything else
.hidden-desktop { display: inherit !important; } .hidden-desktop { display: inherit !important; }
.visible-desktop { display: none !important; } .visible-desktop { display: none !important ; }
} }
// Tablets & small desktops only // Phones only
@media (min-width: 768px) and (max-width: 979px) { @media (max-width: 767px) {
// Show // Show
.visible-tablet { display: inherit !important; } .visible-phone { display: inherit !important; } // Use inherit to restore previous behavior
// Hide // Hide
.hidden-tablet { display: none !important; } .hidden-phone { display: none !important; }
// Hide everything else // Hide everything else
.hidden-desktop { display: inherit !important; } .hidden-desktop { display: inherit !important; }
.visible-desktop { display: none !important ; } .visible-desktop { display: none !important; }
} }
...@@ -31,14 +31,14 @@ ...@@ -31,14 +31,14 @@
// MEDIA QUERIES // MEDIA QUERIES
// ------------------ // ------------------
// Phones to portrait tablets and narrow desktops // Large desktops
@import "responsive-767px-max.less"; @import "responsive-1200px-min.less";
// Tablets to regular desktops // Tablets to regular desktops
@import "responsive-768px-979px.less"; @import "responsive-768px-979px.less";
// Large desktops // Phones to portrait tablets and narrow desktops
@import "responsive-1200px-min.less"; @import "responsive-767px-max.less";
// RESPONSIVE NAVBAR // RESPONSIVE NAVBAR
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment