1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-28 07:39:57 +02:00

fix fluid grid selectors to remove > in selectors

This commit is contained in:
Mark Otto
2012-03-31 00:53:38 -07:00
parent 2f4810e72f
commit 37745cd899
6 changed files with 122 additions and 40 deletions

View File

@@ -577,7 +577,7 @@
.fluid (@fluidGridColumnWidth, @fluidGridGutterWidth) {
.spanX (@index) when (@index > 0) {
(~"> .span@{index}") { .span(@index); }
(~".span@{index}") { .span(@index); }
.spanX(@index - 1);
}
.spanX (0) {}
@@ -590,6 +590,7 @@
width: 100%;
.clearfix();
[class*="span"] {
.input-block-level();
float: left;
margin-left: @fluidGridGutterWidth;
}