mirror of
https://github.com/twbs/bootstrap.git
synced 2025-09-07 04:00:44 +02:00
undo the grid max-width boundary because it makes offsets kinda borked (you'd have to set twice, for medium and large, in most cases--and that sucks)
This commit is contained in:
6
dist/css/bootstrap.css
vendored
6
dist/css/bootstrap.css
vendored
@@ -951,9 +951,6 @@ pre code {
|
|||||||
.col-sm-12 {
|
.col-sm-12 {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 768px) and (max-width: 991px) {
|
|
||||||
.col-sm-push-1 {
|
.col-sm-push-1 {
|
||||||
left: 8.333333333333332%;
|
left: 8.333333333333332%;
|
||||||
}
|
}
|
||||||
@@ -1109,9 +1106,6 @@ pre code {
|
|||||||
.col-md-12 {
|
.col-md-12 {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 992px) and (max-width: 1199px) {
|
|
||||||
.col-md-push-1 {
|
.col-md-push-1 {
|
||||||
left: 8.333333333333332%;
|
left: 8.333333333333332%;
|
||||||
}
|
}
|
||||||
|
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -140,9 +140,7 @@
|
|||||||
.col-sm-10 { width: percentage((10/ @grid-columns)); }
|
.col-sm-10 { width: percentage((10/ @grid-columns)); }
|
||||||
.col-sm-11 { width: percentage((11/ @grid-columns)); }
|
.col-sm-11 { width: percentage((11/ @grid-columns)); }
|
||||||
.col-sm-12 { width: 100%; }
|
.col-sm-12 { width: 100%; }
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
|
|
||||||
// Push and pull columns for source order changes
|
// Push and pull columns for source order changes
|
||||||
.col-sm-push-1 { left: percentage((1 / @grid-columns)); }
|
.col-sm-push-1 { left: percentage((1 / @grid-columns)); }
|
||||||
.col-sm-push-2 { left: percentage((2 / @grid-columns)); }
|
.col-sm-push-2 { left: percentage((2 / @grid-columns)); }
|
||||||
@@ -217,9 +215,7 @@
|
|||||||
.col-md-10 { width: percentage((10/ @grid-columns)); }
|
.col-md-10 { width: percentage((10/ @grid-columns)); }
|
||||||
.col-md-11 { width: percentage((11/ @grid-columns)); }
|
.col-md-11 { width: percentage((11/ @grid-columns)); }
|
||||||
.col-md-12 { width: 100%; }
|
.col-md-12 { width: 100%; }
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: @screen-desktop) and (max-width: @screen-desktop-max) {
|
|
||||||
// Push and pull columns for source order changes
|
// Push and pull columns for source order changes
|
||||||
.col-md-push-1 { left: percentage((1 / @grid-columns)); }
|
.col-md-push-1 { left: percentage((1 / @grid-columns)); }
|
||||||
.col-md-push-2 { left: percentage((2 / @grid-columns)); }
|
.col-md-push-2 { left: percentage((2 / @grid-columns)); }
|
||||||
|
Reference in New Issue
Block a user