diff options
| author | Mark Otto <[email protected]> | 2014-07-02 22:06:32 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-07-02 22:06:32 -0700 |
| commit | d67fe0f5b9f2a5677a0c0dd5e4e8cc13ea57a91f (patch) | |
| tree | 64c115df355a8134a511ec5f1dbc082648a6a9b1 /docs/_includes/css | |
| parent | afbe7114b4a362b6cae008328343d9e568c03457 (diff) | |
| parent | ebdecacd650a766e8123dbe3f86c4aa0f9cd72b4 (diff) | |
| download | bootstrap-d67fe0f5b9f2a5677a0c0dd5e4e8cc13ea57a91f.tar.xz bootstrap-d67fe0f5b9f2a5677a0c0dd5e4e8cc13ea57a91f.zip | |
Merge branch 'pr/14011'
Diffstat (limited to 'docs/_includes/css')
| -rw-r--r-- | docs/_includes/css/forms.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/docs/_includes/css/forms.html b/docs/_includes/css/forms.html index 9680c6c91..15bfb93b0 100644 --- a/docs/_includes/css/forms.html +++ b/docs/_includes/css/forms.html @@ -521,6 +521,30 @@ <label class="control-label" for="inputError1">Input with error</label> <input type="text" class="form-control" id="inputError1"> </div> + <div class="has-success"> + <div class="checkbox"> + <label> + <input type="checkbox" id="checkboxError" value="option1"> + Checkbox with success + </label> + </div> + </div> + <div class="has-warning"> + <div class="checkbox"> + <label> + <input type="checkbox" id="checkboxError" value="option1"> + Checkbox with warning + </label> + </div> + </div> + <div class="has-error"> + <div class="checkbox"> + <label> + <input type="checkbox" id="checkboxError" value="option1"> + Checkbox with error + </label> + </div> + </div> </form> </div><!-- /.bs-example --> {% highlight html %} @@ -536,6 +560,30 @@ <label class="control-label" for="inputError1">Input with error</label> <input type="text" class="form-control" id="inputError1"> </div> +<div class="has-success"> + <div class="checkbox"> + <label> + <input type="checkbox" id="checkboxError" value="option1"> + Checkbox with success + </label> + </div> +</div> +<div class="has-warning"> + <div class="checkbox"> + <label> + <input type="checkbox" id="checkboxError" value="option1"> + Checkbox with warning + </label> + </div> +</div> +<div class="has-error"> + <div class="checkbox"> + <label> + <input type="checkbox" id="checkboxError" value="option1"> + Checkbox with error + </label> + </div> +</div> {% endhighlight %} <h3>With optional icons</h3> |
