mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
rewrite the fluid grid mixin to be simpler, per #2370
This commit is contained in:
parent
0090fa1a6e
commit
0630cd62b3
2 changed files with 2 additions and 1 deletions
Binary file not shown.
|
@ -568,7 +568,8 @@
|
||||||
.spanX (0) {}
|
.spanX (0) {}
|
||||||
|
|
||||||
.span (@columns) {
|
.span (@columns) {
|
||||||
width: 1% * (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1));
|
//width: 1% * (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1));
|
||||||
|
width: (@fluidGridColumnWidth * @columns) + (@fluidGridGutterWidth * (@columns - 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
.row-fluid {
|
.row-fluid {
|
||||||
|
|
Loading…
Reference in a new issue