diff options
| author | Mark Otto <[email protected]> | 2014-07-02 22:55:01 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-07-02 22:55:01 -0700 |
| commit | fb37ec16f87b2d3a5d194eb3f61d25f564a71110 (patch) | |
| tree | 91e6c9a178e5f570d5093b572f9c0c5a8d951d32 /docs/_includes/css/forms.html | |
| parent | b4958aba69cd942271bba465d5cbc8ef4a1d0529 (diff) | |
| parent | a091c90063441e6ccd93307477fe9e3335fd740a (diff) | |
| download | bootstrap-fb37ec16f87b2d3a5d194eb3f61d25f564a71110.tar.xz bootstrap-fb37ec16f87b2d3a5d194eb3f61d25f564a71110.zip | |
Merge branch 'master' into pr/14005
Diffstat (limited to 'docs/_includes/css/forms.html')
| -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..02deb7d67 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="checkboxSuccess" value="option1"> + Checkbox with success + </label> + </div> + </div> + <div class="has-warning"> + <div class="checkbox"> + <label> + <input type="checkbox" id="checkboxWarning" 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="checkboxSuccess" value="option1"> + Checkbox with success + </label> + </div> +</div> +<div class="has-warning"> + <div class="checkbox"> + <label> + <input type="checkbox" id="checkboxWarning" 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> |
