Suppress title tooltip in abc plugin svg

Operating system

macOS

Joplin version

3.1.3

Desktop version info

Joplin 3.1.3 (prod, darwin)

Client ID: d238670b529f4b479e91fd4bf8044ea2
Sync Version: 3
Profile Version: 47
Keychain Supported: Yes

Revision: 263a7ef

ABC Sheet Music Plugin: 1.0.3
Backup: 1.4.2
BibTeX: 0.5.0
Create and go to tags and @notebooks: 1.3.7
Embed Search: 2.0.0
Emoji: 1.0.4
Hotfolder: 1.1.0
Insert Date: 1.0.1
Note Tabs: 1.4.0

What issue do you have?

A minor annoyance with the wonderful abc music rendering plugin: The SVG for the rendered musical notation includes a 'tooltip' when the cursor hovers over the image such that it reads "Sheet music for 'title of the music'". This tooltip serves no useful purpose for me, and it obscures some of the notes of the music itself. I'm wondering if there's some way to turn that off, or render it invisible via css on the .abc-notation-block svg element.

Screenshots

svgtooltip.png

To remove that tooltip on hover, add this CSS to userstyle.css:

.abc-notation-block > svg {
  pointer-events: none;
}
1 Like