aboutsummaryrefslogtreecommitdiff
path: root/dist/css/bootstrap.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-14 18:32:15 -0700
committerMark Otto <[email protected]>2013-08-14 18:32:15 -0700
commita58bf083601c096378276275edefc53e5cc4b8c6 (patch)
tree05942e26a1fbdc2adf44419cd551c7d7d058e4f7 /dist/css/bootstrap.css
parenta9d6b7ee0b4dd7b109daabd586d6198898816dd0 (diff)
parente684758b55dbfe1e18f3e3aa4d5eddcfaf1bd010 (diff)
downloadbootstrap-a58bf083601c096378276275edefc53e5cc4b8c6.tar.xz
bootstrap-a58bf083601c096378276275edefc53e5cc4b8c6.zip
Merge pull request #9578 from twbs/cursor-not-allowed-disabled-btn-checkbox-radio
fixes #9511; set cursor:not-allowed for disabled buttons,checkboxes,radios
Diffstat (limited to 'dist/css/bootstrap.css')
-rw-r--r--dist/css/bootstrap.css13
1 files changed, 12 insertions, 1 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css
index 0e301335a..e98f84808 100644
--- a/dist/css/bootstrap.css
+++ b/dist/css/bootstrap.css
@@ -1711,6 +1711,17 @@ textarea.form-control {
margin-left: 10px;
}
+.radio[disabled],
+.radio-inline[disabled],
+.checkbox[disabled],
+.checkbox-inline[disabled],
+fieldset[disabled] .radio,
+fieldset[disabled] .radio-inline,
+fieldset[disabled] .checkbox,
+fieldset[disabled] .checkbox-inline {
+ cursor: not-allowed;
+}
+
.input-sm {
height: 30px;
padding: 5px 10px;
@@ -1936,7 +1947,7 @@ textarea.input-lg {
.btn[disabled],
fieldset[disabled] .btn {
pointer-events: none;
- cursor: default;
+ cursor: not-allowed;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;