aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Cuppens <[email protected]>2019-08-17 16:58:26 +0200
committerXhmikosR <[email protected]>2019-08-24 02:26:28 +0300
commitd9abb8e20df5e68e09700c98194f4f3e9338cc4c (patch)
treee012c20160d685a312f11e1cf55e8ced43f05daa
parent0603522199d92beb42438aabb22b489a6cb6a834 (diff)
downloadbootstrap-d9abb8e20df5e68e09700c98194f4f3e9338cc4c.tar.xz
bootstrap-d9abb8e20df5e68e09700c98194f4f3e9338cc4c.zip
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 92593e4f5..8bca403b0 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 >}}