diff options
| author | Mark Otto <[email protected]> | 2012-01-31 09:39:59 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-01-31 09:39:59 -0800 |
| commit | 4bd1ba4e0dc44d1d16161306576548f378ab1f8a (patch) | |
| tree | 2df7bdb240df0b1add087426d3aea97963fbbe27 /docs/templates | |
| parent | a6253f0937a5d1f0bd18655729bff03bd5373f17 (diff) | |
| parent | d70ba6c5e66b27acfc46121bf2293773451a339e (diff) | |
| download | bootstrap-4bd1ba4e0dc44d1d16161306576548f378ab1f8a.tar.xz bootstrap-4bd1ba4e0dc44d1d16161306576548f378ab1f8a.zip | |
Merge pull request #1459 from nkryptic/add-help-text
[2.0-wip] Add form help text information to docs
Diffstat (limited to 'docs/templates')
| -rw-r--r-- | docs/templates/pages/base-css.mustache | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/templates/pages/base-css.mustache b/docs/templates/pages/base-css.mustache index 34ac69cd7..cc0b2a1ea 100644 --- a/docs/templates/pages/base-css.mustache +++ b/docs/templates/pages/base-css.mustache @@ -1079,7 +1079,7 @@ <input type="checkbox" name="optionsCheckboxList3" value="option3"> {{_i}}Option three can—yes, you guessed it—also be checked and included in form results{{/i}} </label> - <p class="help-text">{{_i}}<strong>Note:</strong> Labels surround all the options for much larger click areas and a more usable form.{{/i}}</p> + <p class="help-block">{{_i}}<strong>Note:</strong> Labels surround all the options for much larger click areas and a more usable form.{{/i}}</p> </div> </div> <div class="control-group"> @@ -1112,6 +1112,9 @@ <hr> <h4>{{_i}}Inline forms and append/prepend{{/i}}</h4> <p>{{_i}}To use prepend or append inputs in an inline form, be sure to place the <code>.add-on</code> and <code>input</code> on the same line, without spaces.{{/i}}</p> + <hr> + <h4>{{_i}}Form help text{{/i}}</h4> + <p>{{_i}}To add help text for your form inputs, include inline help text with <code><span class="help-inline"></code> or a help text block with <code><p class="help-block"></code> after the input element.{{/i}}</p> </div> </div><!-- /row --> </section> |
