diff options
| author | Mark Otto <[email protected]> | 2012-03-28 18:00:05 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-03-28 18:00:05 -0700 |
| commit | d6680a50b9d4518449b569259a0f150619d4074d (patch) | |
| tree | efd8baa87e13c6b679affb2f1e2e6bd837740bc4 /docs/base-css.html | |
| parent | 369ca13c7594a2b21e867fb4c139ebc21abd4d2e (diff) | |
| download | bootstrap-d6680a50b9d4518449b569259a0f150619d4074d.tar.xz bootstrap-d6680a50b9d4518449b569259a0f150619d4074d.zip | |
start rearranging form docs and clear up messaging about required classes and default styles
Diffstat (limited to 'docs/base-css.html')
| -rw-r--r-- | docs/base-css.html | 39 |
1 files changed, 14 insertions, 25 deletions
diff --git a/docs/base-css.html b/docs/base-css.html index 65c6036d4..b9dbd372f 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -875,11 +875,9 @@ For example, <code>section</code> should be wrapped as inline. <h2>Example forms <small>using just form controls, no extra markup</small></h2> <div class="row"> - <div class="span3"> + <div class="span6"> <h3>Basic form</h3> - <p>With v2.0, we have lighter and smarter defaults for form styles. No extra markup, just form controls.</p> - </div> - <div class="span9"> + <p>Smart and lightweight defaults without extra markup.</p> <form class="well"> <label>Label name</label> <input type="text" class="span3" placeholder="Type something…"> @@ -893,39 +891,30 @@ For example, <code>section</code> should be wrapped as inline. <form class="well"> <label>Label name</label> <input type="text" class="span3" placeholder="Type something…"> - <span class="help-inline">Associated help text!</span> + <span class="help-block">Example block-level help text here.</span> <label class="checkbox"> <input type="checkbox"> Check me out </label> <button type="submit" class="btn">Submit</button> </form> </pre> - </div> - </div> <!-- /row --> - <div class="row"> - <div class="span3"> - <h3>Search form</h3> - <p>Reflecting default WebKit styles, just add <code>.form-search</code> for extra rounded search fields.</p> - </div> - <div class="span9"> - <form class="well form-search"> - <input type="text" class="input-medium search-query"> - <button type="submit" class="btn">Search</button> - </form> + </div> + <div class="span6"> + <h3>Search form</h3> + <p>Add <code>.form-search</code> to the form and <code>.search-query</code> to the <code>input</code>.</p> + <form class="well form-search"> + <input type="text" class="input-medium search-query"> + <button type="submit" class="btn">Search</button> + </form> <pre class="prettyprint linenums"> <form class="well form-search"> <input type="text" class="input-medium search-query"> <button type="submit" class="btn">Search</button> </form> </pre> - </div> - </div> <!-- /row --> - <div class="row"> - <div class="span3"> + <h3>Inline form</h3> - <p>Inputs are block level to start. For <code>.form-inline</code> and <code>.form-horizontal</code>, we use inline-block.</p> - </div> - <div class="span9"> + <p>Add <code>.form-inline</code> to finesse the vertical alignment and spacing of form controls.</p> <form class="well form-inline"> <input type="text" class="input-small" placeholder="Email"> <input type="password" class="input-small" placeholder="Password"> @@ -944,7 +933,7 @@ For example, <code>section</code> should be wrapped as inline. <button type="submit" class="btn">Sign in</button> </form> </pre> - </div> + </div><!-- /.span --> </div><!-- /row --> <br> |
