Skip to content

Commit

Permalink
Fix #2933 - Disabled button does not remove pointer events when loading
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Mar 7, 2016
1 parent acf3cc5 commit 1b30636
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
**Bugs**
- **API** - Using `onResponse` with `dataType` other than JSON or JSONP would cause an error. (Not allowing plain text responses to be translated) #3653
- **Button** - `right icon` like `right arrow icon` would have additional margin inside an `icon button` #3525
- **Button** - Fixed issue where `disabled loading button` would not remove `pointer-events` #2933
- **Checkbox** - Radio buttons received `indeterminate` styles when user has not yet interacted with the page in Chrome
- **Dropdown** - `apiSettings` was not defaulting to use `cache: 'local'` as specified in the docs
- **Dropdown** - `get value` would not return correct value when value was blank #3766
Expand Down
2 changes: 1 addition & 1 deletion src/definitions/elements/button.less
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
opacity: @disabledOpacity !important;
background-image: none !important;
box-shadow: none !important;
pointer-events: none;
pointer-events: none !important;
}

/* Basic Group With Disabled */
Expand Down

0 comments on commit 1b30636

Please sign in to comment.