From f84b2a29fed404caedb09a74ee9f9ebb4214ccf2 Mon Sep 17 00:00:00 2001 From: Varunram Date: Tue, 13 Mar 2018 21:46:32 +0530 Subject: [PATCH 1/2] Fix #25742: Document .form-control-range --- docs/4.0/components/forms.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/4.0/components/forms.md b/docs/4.0/components/forms.md index 7db4644b8dc9..79ab186ebd2b 100644 --- a/docs/4.0/components/forms.md +++ b/docs/4.0/components/forms.md @@ -105,6 +105,20 @@ Set heights using classes like `.form-control-lg` and `.form-control-sm`. {% endexample %} +## Range Inputs + +Set horizontally scrollable range inputs using `.form-control-range` + +{% example html %} +
+
+ + +
+
+{% endexample %} + + ### Readonly Add the `readonly` boolean attribute on an input to prevent modification of the input's value. Read-only inputs appear lighter (just like disabled inputs), but retain the standard cursor. From fee0ddf70c34e328a0c03209740dd9e798baed99 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 14 Mar 2018 01:00:53 +0200 Subject: [PATCH 2/2] Update forms.md --- docs/4.0/components/forms.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/4.0/components/forms.md b/docs/4.0/components/forms.md index 79ab186ebd2b..fadc2dd27c55 100644 --- a/docs/4.0/components/forms.md +++ b/docs/4.0/components/forms.md @@ -107,7 +107,7 @@ Set heights using classes like `.form-control-lg` and `.form-control-sm`. ## Range Inputs -Set horizontally scrollable range inputs using `.form-control-range` +Set horizontally scrollable range inputs using `.form-control-range`. {% example html %}
@@ -118,7 +118,6 @@ Set horizontally scrollable range inputs using `.form-control-range`
{% endexample %} - ### Readonly Add the `readonly` boolean attribute on an input to prevent modification of the input's value. Read-only inputs appear lighter (just like disabled inputs), but retain the standard cursor.