diff options
| author | Chris Rebert <[email protected]> | 2014-12-22 13:33:58 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-12-22 13:34:02 -0800 |
| commit | 5b03c9ad634499ff00a0248602d9f097c3be5e00 (patch) | |
| tree | 6d0b1832c87c10830e58564e6c96b3ac5364b9a4 /scss/_forms.scss | |
| parent | 497b05c1be3336e21060e0b3e031342fc32e4e34 (diff) | |
| download | bootstrap-5b03c9ad634499ff00a0248602d9f097c3be5e00.tar.xz bootstrap-5b03c9ad634499ff00a0248602d9f097c3be5e00.zip | |
[disabled] => :disabled
:disabled is supported in IE9+ and all modern browsers
Diffstat (limited to 'scss/_forms.scss')
| -rw-r--r-- | scss/_forms.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_forms.scss b/scss/_forms.scss index 1f68383f9..8d6d00af0 100644 --- a/scss/_forms.scss +++ b/scss/_forms.scss @@ -140,7 +140,7 @@ output { // HTML5 says that controls under a fieldset > legend:first-child won't be // disabled if the fieldset is disabled. Due to implementation difficulty, we // don't honor that edge case; we style them as disabled anyway. - &[disabled], + &:disabled, &[readonly], fieldset[disabled] & { cursor: $cursor-disabled; @@ -263,7 +263,7 @@ input[type="search"] { // Note: Neither radios nor checkboxes can be readonly. input[type="radio"], input[type="checkbox"] { - &[disabled], + &:disabled, &.disabled, fieldset[disabled] & { cursor: $cursor-disabled; |
