aboutsummaryrefslogtreecommitdiff
path: root/less/forms.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-10-28 23:04:49 -0700
committerMark Otto <[email protected]>2014-10-28 23:04:49 -0700
commit2d20bba3079f194f657c993c8a99791f97074374 (patch)
tree0cd8d719f19768d1a202fd376c72585e2ae38bfd /less/forms.less
parentaad0f00887239a1971ae746a2828f037b5d30541 (diff)
parente528daf6d0c7709fa6c7d6091ff097cd4834a840 (diff)
downloadbootstrap-2d20bba3079f194f657c993c8a99791f97074374.tar.xz
bootstrap-2d20bba3079f194f657c993c8a99791f97074374.zip
Merge pull request #14891 from twbs/cursor_var
Add variable for default cursor
Diffstat (limited to 'less/forms.less')
-rw-r--r--less/forms.less8
1 files changed, 4 insertions, 4 deletions
diff --git a/less/forms.less b/less/forms.less
index aefc0dea5..38e4ce6d6 100644
--- a/less/forms.less
+++ b/less/forms.less
@@ -141,7 +141,7 @@ output {
&[disabled],
&[readonly],
fieldset[disabled] & {
- cursor: not-allowed;
+ cursor: @cursor-disabled;
background-color: @input-bg-disabled;
opacity: 1; // iOS fix for unreadable disabled content
}
@@ -275,7 +275,7 @@ input[type="checkbox"] {
&[disabled],
&.disabled,
fieldset[disabled] & {
- cursor: not-allowed;
+ cursor: @cursor-disabled;
}
}
// These classes are used directly on <label>s
@@ -283,7 +283,7 @@ input[type="checkbox"] {
.checkbox-inline {
&.disabled,
fieldset[disabled] & {
- cursor: not-allowed;
+ cursor: @cursor-disabled;
}
}
// These classes are used on elements with <label> descendants
@@ -292,7 +292,7 @@ input[type="checkbox"] {
&.disabled,
fieldset[disabled] & {
label {
- cursor: not-allowed;
+ cursor: @cursor-disabled;
}
}
}