Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markotto@twitter.com>2012-07-31 02:38:36 +0400
committerMark Otto <markotto@twitter.com>2012-07-31 02:38:36 +0400
commit364dbb7931393cb8fa796d75ec1f32a757d335e1 (patch)
treef9238f37749ababf839dfcead341766224000911 /less/tests/css-tests.html
parentbe8d5243f4942a83d9c3e08c5d9f4419536c72c2 (diff)
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.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/less/tests/css-tests.html b/less/tests/css-tests.html
index 3ded955bf6..71de6cce74 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>