]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Documentation tweak
authorMartijn Cuppens <martijn.cuppens@gmail.com>
Sat, 17 Aug 2019 14:58:26 +0000 (16:58 +0200)
committerXhmikosR <xhmikosr@gmail.com>
Fri, 23 Aug 2019 23:26:28 +0000 (02:26 +0300)
site/content/docs/4.3/forms/form-control.md

index 92593e4f5d7edd9b96044b3382355185b1b7fedd..8bca403b01b84b962e5ce8d75a5de18b2ae30fcb 100644 (file)
@@ -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 >}}