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:
authorMartijn Cuppens <martijn.cuppens@gmail.com>2019-08-17 17:58:26 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-08-24 02:26:28 +0300
commitd9abb8e20df5e68e09700c98194f4f3e9338cc4c (patch)
treee012c20160d685a312f11e1cf55e8ced43f05daa
parent0603522199d92beb42438aabb22b489a6cb6a834 (diff)
Documentation tweak
-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 >}}