diff options
| author | Mark Otto <[email protected]> | 2015-02-17 11:31:36 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-02-17 11:31:36 -0800 |
| commit | a7a6e7f8d6c4900b83017f7ae2bd69ec509d32c4 (patch) | |
| tree | 69a2196110b316e7fb7b5fd3dddfba3362a25fb0 /docs/_includes | |
| parent | 0d7b85ece7d9aa52890517404f55556525dea61d (diff) | |
| parent | 2dfc58fa5cff5b8d4776df6229a7294548426c06 (diff) | |
| download | bootstrap-a7a6e7f8d6c4900b83017f7ae2bd69ec509d32c4.tar.xz bootstrap-a7a6e7f8d6c4900b83017f7ae2bd69ec509d32c4.zip | |
Merge pull request #15703 from kkirsche/patch-9
[Fix Issue #15683] `readonly` input should not have a not-allowed cursor
Diffstat (limited to 'docs/_includes')
| -rw-r--r-- | docs/_includes/css/forms.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/_includes/css/forms.html b/docs/_includes/css/forms.html index 614b43f92..7737ae909 100644 --- a/docs/_includes/css/forms.html +++ b/docs/_includes/css/forms.html @@ -528,7 +528,7 @@ <h2 id="forms-control-disabled">Disabled state</h2> - <p>Add the <code>disabled</code> boolean attribute on an input to prevent user input and trigger a slightly different look.</p> + <p>Add the <code>disabled</code> boolean attribute on an input to prevent user interactions. Disabled inputs appear lighter and add a <code>not-allowed</code> cursor.</p> <div class="bs-example" data-example-id="text-form-control-disabled"> <form> <input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here…" disabled> @@ -598,7 +598,7 @@ <h2 id="forms-control-readonly">Readonly state</h2> - <p>Add the <code>readonly</code> boolean attribute on an input to prevent user input and style the input as disabled.</p> + <p>Add the <code>readonly</code> boolean attribute on an input to prevent modification of the input's value. Read-only inputs appear lighter (just like disabled inputs), but retain the standard cursor.</p> <div class="bs-example" data-example-id="readonly-text-form-control"> <form> <input class="form-control" type="text" placeholder="Readonly input here…" readonly> |
