react-pdf-highlighter icon indicating copy to clipboard operation
react-pdf-highlighter copied to clipboard

Added Custom Cursor When Hovering Text

Open codepeach opened this issue 1 year ago • 1 comments

When hovering over text in a PDF, I want to use a custom cursor. I've tried altering the CSS classes such as the one below, however, it only works when hovering over the pdf and is not present when hovering over text.

.textLayer { cursor: url('data:image/svg+xml, %3Csvg...'), auto; }

codepeach avatar Aug 09 '24 06:08 codepeach

@codepeach use

.textLayer :is(span, br) { cursor: pointer; // use any pointer u like }

KarthikeyaKollu avatar Dec 03 '24 05:12 KarthikeyaKollu