diff options
| author | Chris Rebert <[email protected]> | 2014-06-05 13:31:39 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-06-06 17:23:28 -0700 |
| commit | 739bf379a93a2a396e23f0423167b3552eb88191 (patch) | |
| tree | 1104a4e92c08462478ae1fa1cacd12b324342475 /dist/css/bootstrap.css | |
| parent | ef436c761b9587fbd0234788ec8bed4696aec516 (diff) | |
| download | bootstrap-739bf379a93a2a396e23f0423167b3552eb88191.tar.xz bootstrap-739bf379a93a2a396e23f0423167b3552eb88191.zip | |
set not-allowed cursor on disabled radio+checkbox labels; fixes #13281
[skip validator] [skip sauce]
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index b172acc5b..87855926d 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2440,18 +2440,24 @@ input[type="month"].input-lg { } input[type="radio"][disabled], input[type="checkbox"][disabled], -.radio[disabled], -.radio-inline[disabled], -.checkbox[disabled], -.checkbox-inline[disabled], +input[type="radio"].disabled, +input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], -fieldset[disabled] input[type="checkbox"], -fieldset[disabled] .radio, +fieldset[disabled] input[type="checkbox"] { + cursor: not-allowed; +} +.radio-inline.disabled, +.checkbox-inline.disabled, fieldset[disabled] .radio-inline, -fieldset[disabled] .checkbox, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } +.radio.disabled label, +.checkbox.disabled label, +fieldset[disabled] .radio label, +fieldset[disabled] .checkbox label { + cursor: not-allowed; +} .input-sm { height: 30px; padding: 5px 10px; |
