Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--site/content/docs/4.3/forms/form-control.md8
1 files changed, 2 insertions, 6 deletions
diff --git a/site/content/docs/4.3/forms/form-control.md b/site/content/docs/4.3/forms/form-control.md
index 92593e4f5d..8bca403b01 100644
--- a/site/content/docs/4.3/forms/form-control.md
+++ b/site/content/docs/4.3/forms/form-control.md
@@ -76,15 +76,11 @@ If you want to have `<input readonly>` elements in your form styled as plain tex
## Color
-On macOS:
-
-- Chrome shows the native color picker
-- Safari shows a custom color picker that points to the input
-- Firefox shows the native color picker
+Keep in mind color inputs are [not supported in IE](https://caniuse.com/#feat=input-color).
{{< example >}}
<form>
<label for="exampleColorInput">Color picker</label>
- <input type="color" class="form-control form-control-color" id="exampleColorInput" value="#563d7c">
+ <input type="color" class="form-control form-control-color" id="exampleColorInput" value="#563d7c" title="Choose your color">
</form>
{{< /example >}}