diff options
| author | Mark Otto <[email protected]> | 2012-07-30 15:38:36 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-07-30 15:38:36 -0700 |
| commit | 364dbb7931393cb8fa796d75ec1f32a757d335e1 (patch) | |
| tree | f9238f37749ababf839dfcead341766224000911 /less/tests/css-tests.html | |
| parent | be8d5243f4942a83d9c3e08c5d9f4419536c72c2 (diff) | |
| download | bootstrap-364dbb7931393cb8fa796d75ec1f32a757d335e1.tar.xz bootstrap-364dbb7931393cb8fa796d75ec1f32a757d335e1.zip | |
fixes #3665: ensure inputs in a fluid row maintain grid sizing
Diffstat (limited to 'less/tests/css-tests.html')
| -rw-r--r-- | less/tests/css-tests.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/less/tests/css-tests.html b/less/tests/css-tests.html index 3ded955bf..71de6cce7 100644 --- a/less/tests/css-tests.html +++ b/less/tests/css-tests.html @@ -796,6 +796,25 @@ </div><!--/span--> </div><!--/row--> </div> + +<br> + +<h4>Inline form in fluid row</h4> + +<div class="row-fluid"> + <div class="span12"> + <form class="form-inline"> + <input type="text" class="span3" placeholder="Email"> + <input type="password" class="span3" placeholder="Password"> + <label class="checkbox"> + <input type="checkbox"> Remember me + </label> + <button type="submit" class="btn">Sign in</button> + </form> + </div> +</div> + + <br> |
