aboutsummaryrefslogtreecommitdiff
path: root/less/forms.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2015-02-17 11:31:36 -0800
committerMark Otto <[email protected]>2015-02-17 11:31:36 -0800
commita7a6e7f8d6c4900b83017f7ae2bd69ec509d32c4 (patch)
tree69a2196110b316e7fb7b5fd3dddfba3362a25fb0 /less/forms.less
parent0d7b85ece7d9aa52890517404f55556525dea61d (diff)
parent2dfc58fa5cff5b8d4776df6229a7294548426c06 (diff)
downloadbootstrap-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 'less/forms.less')
-rw-r--r--less/forms.less6
1 files changed, 5 insertions, 1 deletions
diff --git a/less/forms.less b/less/forms.less
index 0017dfd41..bc900da8f 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -141,10 +141,14 @@ output {
&[disabled],
&[readonly],
fieldset[disabled] & {
- cursor: @cursor-disabled;
background-color: @input-bg-disabled;
opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655
}
+
+ &[disabled],
+ fieldset[disabled] & {
+ cursor: @cursor-disabled;
+ }
// Reset height for `textarea`s
textarea& {