I first found this question, but I found another SO post that had a CSS-only solution that worked for me here .
The bottom line of CSS is this:
.overlay { height: 0px; overflow: visible; pointer-events: none; background:none !important; }
In my case, I also had text, and I did not want users to be able to select it, so I added the following (see user-select here and here ):
.overlay { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
source share