From 0eaece2c646b9fa59946844da60f9db7a25a47e2 Mon Sep 17 00:00:00 2001 From: Lucas Larroche Date: Sun, 6 Feb 2022 10:59:18 +0700 Subject: [PATCH] content(docs): Change disabled switch copy --- docs/forms.html | 4 ++-- docs/src/forms.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/forms.html b/docs/forms.html index adbc7753..e866a3cc 100644 --- a/docs/forms.html +++ b/docs/forms.html @@ -27,7 +27,7 @@ </form>

Disabled and validation states:

<input type="text" placeholder="Valid" aria-invalid="false">
 <input type="text" placeholder="Invalid" aria-invalid="true">
 <input type="text" placeholder="Disabled" disabled>
-<input type="text" value="Readonly" readonly>

<fieldset> is unstyled and acts as a container for radios and checkboxes, providing a consistent margin-bottom for the set.

role="switch" on a type="checkbox" enable a custom switch.

Size
<!-- Select -->
+<input type="text" value="Readonly" readonly>

<fieldset> is unstyled and acts as a container for radios and checkboxes, providing a consistent margin-bottom for the set.

role="switch" on a type="checkbox" enable a custom switch.

Size
<!-- Select -->
 <label for="fruit">Fruit</label>
 <select id="fruit" required>
   <option value="" selected>Select a fruit…</option>
@@ -75,7 +75,7 @@
   </label>
   <label for="switch_disabled">
     <input type="checkbox" id="switch_disabled" name="switch_disabled" role="switch_disabled" disabled checked>
-    Publish on my profile my accomplishments
+    User must change password at next logon
   </label>
 </fieldset>

You can change a checkbox to an indeterminate state by setting the indeterminate property to true