Alters search highlights so they don't intercept pointer events

This commit is contained in:
Brian Sanders 2020-05-13 06:10:57 -04:00
parent edb7c50cb3
commit 2631f4f3f0
1 changed files with 1 additions and 0 deletions

View File

@ -156,6 +156,7 @@ function makeHighlightRect({left, top, width, height}, offsetTop=0, offsetLeft=0
width: `${Math.ceil(width)}px`,
height: `${Math.ceil(height)}px`,
backgroundColor: 'rgba(200, 220, 10, 0.4)',
pointerEvents: 'none'
});
return overlay;