How to Add a ToolTip on Hover to a Disabled MUI Button
MUI Buttons in a disabled state have CSS property pointer-events set to off. This presents a challenge when we want to show a ToolTip on hover of a disabled button. Simply setting pointer-events: all; does not solve the problem. In this tutorial I show a clever solution that enables ToolTips on disabled button hover. The … Read more