diff options
| author | Chris Rebert <[email protected]> | 2015-10-07 00:05:38 -0700 |
|---|---|---|
| committer | Kevin Kirsche <[email protected]> | 2015-10-08 08:56:13 -0400 |
| commit | a180a3362a42978de298a78300b3e39e36a45bf1 (patch) | |
| tree | f73c236dc8d860dcc18c254e5598b86b31fe066e /docs/components | |
| parent | 781916cab6c133da91fcab0a4d7873716e86b607 (diff) | |
| download | bootstrap-a180a3362a42978de298a78300b3e39e36a45bf1.tar.xz bootstrap-a180a3362a42978de298a78300b3e39e36a45bf1.zip | |
Move border-radius mixin from scss/_mixins.scss to scss/mixins/_border-radius.scss
Reunites the family.
Closes #17791
Diffstat (limited to 'docs/components')
| -rw-r--r-- | docs/components/forms.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/components/forms.md b/docs/components/forms.md index 2c6e5516c..031dc83a8 100644 --- a/docs/components/forms.md +++ b/docs/components/forms.md @@ -535,7 +535,7 @@ Block help text—for below inputs or for longer lines of help text—can be eas ## Validation -Bootstrap includes validation styles for error, warning, and success states on form controls. To use, add `.has-warning`, `.has-error`, or `.has-success` to the parent element. Any `.form-control-label`, `.form-control`, and `.text-help` within that element will receive the validation styles. +Bootstrap includes validation styles for error, warning, and success states on form controls. To use, add `.has-warning`, `.has-danger`, or `.has-success` to the parent element. Any `.form-control-label`, `.form-control`, and `.text-help` within that element will receive the validation styles. {% comment %} {% callout warning %} @@ -556,7 +556,7 @@ Ensure that an alternative indication of state is also provided. For instance, y <label class="form-control-label" for="inputWarning1">Input with warning</label> <input type="text" class="form-control form-control-warning" id="inputWarning1"> </div> -<div class="form-group has-error"> +<div class="form-group has-danger"> <label class="form-control-label" for="inputError1">Input with error</label> <input type="text" class="form-control form-control-error" id="inputError1"> </div> @@ -577,7 +577,7 @@ Ensure that an alternative indication of state is also provided. For instance, y </label> </div> </div> -<div class="has-error"> +<div class="has-danger"> <div class="checkbox"> <label> <input type="checkbox" id="checkboxError" value="option1"> |
