Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(button): ripples blocking mouse events on user content (#4526)
* fix(button): ripples blocking mouse events on user content * The ripple overlay intercepts all mouse events on the user content and therefore users are not able to have interactive elements in their buttons. Normally buttons should not contain interactive elements inside, but since the fix is very easy it wouldn't hurt fixing it. * Removing the `(touchstart)` event that should prevent initial clicks because it didn't do anything (because of pointer-events: none) and the initial click doesn't seem to happen anymore. Related to #4503 * Update comment for overlay
- Loading branch information