Merge pull request #10569 from ZDroid/patch-2

Change @screen-* to @screen-*-min
This commit is contained in:
Mark Otto 2013-09-11 23:07:47 -07:00
commit 9c0d04d3e4
5 changed files with 6 additions and 6 deletions

View File

@ -190,7 +190,7 @@
// Scale up controls for tablets and up
@media screen and (min-width: @screen-sm) {
@media screen and (min-width: @screen-sm-min) {
// Scale up the controls a smidge
.carousel-control {

View File

@ -114,7 +114,7 @@
// Note that `.col-sm-12` doesn't get floated on purpose--there's no need since
// it's full-width.
@media (min-width: @screen-sm) {
@media (min-width: @screen-sm-min) {
.container {
width: @container-sm;
}
@ -192,7 +192,7 @@
// Note that `.col-md-12` doesn't get floated on purpose--there's no need since
// it's full-width.
@media (min-width: @screen-md) {
@media (min-width: @screen-md-min) {
.container {
width: @container-md;
}

View File

@ -24,7 +24,7 @@
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
}
@media screen and (min-width: @screen-sm) {
@media screen and (min-width: @screen-sm-min) {
padding-top: (@jumbotron-padding * 1.6);
padding-bottom: (@jumbotron-padding * 1.6);

View File

@ -125,7 +125,7 @@
}
// Scale up the modal
@media screen and (min-width: @screen-sm) {
@media screen and (min-width: @screen-sm-min) {
.modal-dialog {
width: 600px;

View File

@ -15,7 +15,7 @@ p {
font-weight: 200;
line-height: 1.4;
@media (min-width: @screen-sm) {
@media (min-width: @screen-sm-min) {
font-size: (@font-size-base * 1.5);
}
}