mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-30 22:52:24 +01:00
Add missing last column float
This commit is contained in:
parent
b5f9cc2057
commit
08e41d769a
12
dist/css/bootstrap.css
vendored
12
dist/css/bootstrap.css
vendored
@ -916,7 +916,8 @@ pre code {
|
|||||||
.col-xs-8,
|
.col-xs-8,
|
||||||
.col-xs-9,
|
.col-xs-9,
|
||||||
.col-xs-10,
|
.col-xs-10,
|
||||||
.col-xs-11 {
|
.col-xs-11,
|
||||||
|
.col-xs-12 {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1135,7 +1136,8 @@ pre code {
|
|||||||
.col-sm-8,
|
.col-sm-8,
|
||||||
.col-sm-9,
|
.col-sm-9,
|
||||||
.col-sm-10,
|
.col-sm-10,
|
||||||
.col-sm-11 {
|
.col-sm-11,
|
||||||
|
.col-sm-12 {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.col-sm-12 {
|
.col-sm-12 {
|
||||||
@ -1304,7 +1306,8 @@ pre code {
|
|||||||
.col-md-8,
|
.col-md-8,
|
||||||
.col-md-9,
|
.col-md-9,
|
||||||
.col-md-10,
|
.col-md-10,
|
||||||
.col-md-11 {
|
.col-md-11,
|
||||||
|
.col-md-12 {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.col-md-12 {
|
.col-md-12 {
|
||||||
@ -1473,7 +1476,8 @@ pre code {
|
|||||||
.col-lg-8,
|
.col-lg-8,
|
||||||
.col-lg-9,
|
.col-lg-9,
|
||||||
.col-lg-10,
|
.col-lg-10,
|
||||||
.col-lg-11 {
|
.col-lg-11,
|
||||||
|
.col-lg-12 {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.col-lg-12 {
|
.col-lg-12 {
|
||||||
|
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
@ -736,11 +736,11 @@
|
|||||||
@item: ~".col-@{class}-@{index}";
|
@item: ~".col-@{class}-@{index}";
|
||||||
.col(@index + 1, @item);
|
.col(@index + 1, @item);
|
||||||
}
|
}
|
||||||
.col(@index, @list) when (@index < @grid-columns) { // general
|
.col(@index, @list) when (@index =< @grid-columns) { // general
|
||||||
@item: ~".col-@{class}-@{index}";
|
@item: ~".col-@{class}-@{index}";
|
||||||
.col(@index + 1, ~"@{list}, @{item}");
|
.col(@index + 1, ~"@{list}, @{item}");
|
||||||
}
|
}
|
||||||
.col(@index, @list) when (@index = @grid-columns) { // terminal
|
.col(@index, @list) when (@index > @grid-columns) { // terminal
|
||||||
@{list} {
|
@{list} {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user