diff options
| author | Mark Otto <[email protected]> | 2012-03-31 00:53:38 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-03-31 00:53:38 -0700 |
| commit | 37745cd8997bdc1d0bb21c276a7aa671bb018eed (patch) | |
| tree | 4aecaf1075b9d36903280f6f055456a6a5e36879 /less/mixins.less | |
| parent | 2f4810e72ffa242aabeab5088d522d3927a3df68 (diff) | |
| download | bootstrap-37745cd8997bdc1d0bb21c276a7aa671bb018eed.tar.xz bootstrap-37745cd8997bdc1d0bb21c276a7aa671bb018eed.zip | |
fix fluid grid selectors to remove > in selectors
Diffstat (limited to 'less/mixins.less')
| -rw-r--r-- | less/mixins.less | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/less/mixins.less b/less/mixins.less index 9cef3f1ed..b3fea77db 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -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; } |
