diff --git a/docs/assets/bootstrap.zip b/docs/assets/bootstrap.zip index 0700910d34..d55ce3f0de 100644 Binary files a/docs/assets/bootstrap.zip and b/docs/assets/bootstrap.zip differ diff --git a/docs/base-css.html b/docs/base-css.html index f84cbe774e..22025bbb2e 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -869,7 +869,8 @@ 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>
+ <input type="text" class="span3" placeholder="Type something…">
+ <span class="help-inline">Associated help text!</span>
<label class="checkbox">
<input type="checkbox"> Check me out
</label>
@@ -983,6 +984,22 @@ For example, <code>section</code> should be wrapped as inline.
+ Example markup
+ Given the above example form layout, here's the markup associated with the first input and control group.
+
+<form class="form-horizontal">
+ <fieldset>
+ <legend>Legend text</legend>
+ <div class="control-group">
+ <label class="control-label" for="input01">Text input</label>
+ <div class="controls">
+ <input type="text" class="input-xlarge" id="input01">
+ <p class="help-block">Supporting help text</p>
+ </div>
+ </div>
+ </fieldset>
+</form>
+
What's included
diff --git a/docs/templates/pages/base-css.mustache b/docs/templates/pages/base-css.mustache
index 3327594b5e..e3420ed092 100644
--- a/docs/templates/pages/base-css.mustache
+++ b/docs/templates/pages/base-css.mustache
@@ -908,6 +908,22 @@
+ {{_i}}Example markup{{/i}}
+ {{_i}}Given the above example form layout, here's the markup associated with the first input and control group.{{/i}}
+
+<form class="form-horizontal">
+ <fieldset>
+ <legend>{{_i}}Legend text{{/i}}</legend>
+ <div class="control-group">
+ <label class="control-label" for="input01">{{_i}}Text input{{/i}}</label>
+ <div class="controls">
+ <input type="text" class="input-xlarge" id="input01">
+ <p class="help-block">{{_i}}Supporting help text{{/i}}</p>
+ </div>
+ </div>
+ </fieldset>
+</form>
+
{{_i}}What's included{{/i}}