1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

Add missing last column float

This commit is contained in:
Zlatan Vasović 2013-11-29 08:37:54 +01:00
parent b5f9cc2057
commit 08e41d769a
3 changed files with 11 additions and 7 deletions

View file

@ -916,7 +916,8 @@ pre code {
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11 {
.col-xs-11,
.col-xs-12 {
float: left;
}
@ -1135,7 +1136,8 @@ pre code {
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11 {
.col-sm-11,
.col-sm-12 {
float: left;
}
.col-sm-12 {
@ -1304,7 +1306,8 @@ pre code {
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11 {
.col-md-11,
.col-md-12 {
float: left;
}
.col-md-12 {
@ -1473,7 +1476,8 @@ pre code {
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11 {
.col-lg-11,
.col-lg-12 {
float: left;
}
.col-lg-12 {

File diff suppressed because one or more lines are too long

View file

@ -736,11 +736,11 @@
@item: ~".col-@{class}-@{index}";
.col(@index + 1, @item);
}
.col(@index, @list) when (@index < @grid-columns) { // general
.col(@index, @list) when (@index =< @grid-columns) { // general
@item: ~".col-@{class}-@{index}";
.col(@index + 1, ~"@{list}, @{item}");
}
.col(@index, @list) when (@index = @grid-columns) { // terminal
.col(@index, @list) when (@index > @grid-columns) { // terminal
@{list} {
float: left;
}