Browse Source

Fix #2933 - Disabled button does not remove pointer events when loading

pull/3792/head
Jack Lukic 8 years ago
parent
commit
1b3063643c
2 changed files with 2 additions and 1 deletions
  1. 1
      RELEASE-NOTES.md
  2. 2
      src/definitions/elements/button.less

1
RELEASE-NOTES.md

@ -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

2
src/definitions/elements/button.less

@ -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 */

Loading…
Cancel
Save