aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-08-04 14:21:21 -0700
committerMark Otto <[email protected]>2017-08-04 14:21:21 -0700
commit062d113eee8422d5f6321143009ee0884dfe2466 (patch)
treeb0da19cc8f70df218a2a3729b5eaa8bfac02804c /docs
parent698a7b4253e668146b5d64f7124a913f71188278 (diff)
downloadbootstrap-062d113eee8422d5f6321143009ee0884dfe2466.tar.xz
bootstrap-062d113eee8422d5f6321143009ee0884dfe2466.zip
remove old validation docs, fixes #23217
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/components/forms.md28
1 files changed, 0 insertions, 28 deletions
diff --git a/docs/4.0/components/forms.md b/docs/4.0/components/forms.md
index 1ae5c81f3..22c06b923 100644
--- a/docs/4.0/components/forms.md
+++ b/docs/4.0/components/forms.md
@@ -957,34 +957,6 @@ Custom checkboxes and radios can also be disabled. Add the `disabled` boolean at
</label>
{% endexample %}
-#### Validation states
-
-Add other states to your custom forms with our validation classes.
-
-{% example html %}
-<div class="form-group has-success">
- <label class="custom-control custom-checkbox">
- <input type="checkbox" class="custom-control-input">
- <span class="custom-control-indicator"></span>
- <span class="custom-control-description">Check this custom checkbox</span>
- </label>
-</div>
-<div class="form-group has-warning">
- <label class="custom-control custom-checkbox">
- <input type="checkbox" class="custom-control-input">
- <span class="custom-control-indicator"></span>
- <span class="custom-control-description">Check this custom checkbox</span>
- </label>
-</div>
-<div class="form-group has-danger mb-0">
- <label class="custom-control custom-checkbox">
- <input type="checkbox" class="custom-control-input">
- <span class="custom-control-indicator"></span>
- <span class="custom-control-description">Check this custom checkbox</span>
- </label>
-</div>
-{% endexample %}
-
#### Stacked
Custom checkboxes and radios are inline to start. Add a parent with class `.custom-controls-stacked` to ensure each form control is on separate lines.