aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-09-11 23:13:28 -0700
committerMark Otto <[email protected]>2013-09-11 23:13:28 -0700
commitdbcb05880f9dc34a694c0ebc2487f1c1ecb47493 (patch)
treec0cd9aa08a2bf9b4b51f583f0361dc7de2074cd2 /less
parent28e5572bf4de4e98b62421dc7d33e8b353fff382 (diff)
parent9c0d04d3e466c559b8ba11c9c0769745031310fb (diff)
downloadbootstrap-dbcb05880f9dc34a694c0ebc2487f1c1ecb47493.tar.xz
bootstrap-dbcb05880f9dc34a694c0ebc2487f1c1ecb47493.zip
Merge branch 'master' of github.com:twbs/bootstrap
Diffstat (limited to 'less')
-rw-r--r--less/carousel.less2
-rw-r--r--less/grid.less4
-rw-r--r--less/jumbotron.less2
-rw-r--r--less/modals.less2
-rw-r--r--less/type.less2
5 files changed, 6 insertions, 6 deletions
diff --git a/less/carousel.less b/less/carousel.less
index c66745c0b..59e4fadf7 100644
--- a/less/carousel.less
+++ b/less/carousel.less
@@ -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 {
diff --git a/less/grid.less b/less/grid.less
index a1ec1b298..39f1049b6 100644
--- a/less/grid.less
+++ b/less/grid.less
@@ -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;
}
diff --git a/less/jumbotron.less b/less/jumbotron.less
index 53289fb2c..3a2365f05 100644
--- a/less/jumbotron.less
+++ b/less/jumbotron.less
@@ -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);
diff --git a/less/modals.less b/less/modals.less
index 0ba896525..4f2cf9468 100644
--- a/less/modals.less
+++ b/less/modals.less
@@ -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;
diff --git a/less/type.less b/less/type.less
index 9a6656b63..5ad6a4669 100644
--- a/less/type.less
+++ b/less/type.less
@@ -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);
}
}