My addon adds a custom button in the Editor which displays size of current note:
(It’s a button because it shows details when clicked)
Additionally, I want to indicate if note is huge by button background color (e.g. green/yellow/red).
I changed the background color of the button invoking document.getElementById('size_button').style.backgroundColor='red'
by editor.web.eval():
But when the mouse pointer hovers over the button, it changes its background color to default:
I can’t find a way how to change its background color when the mouse is over the button.
I tried adding mouseover, mouseenter, mousemove listeners. And removing all listeners by replacing the button with a clone. Without any success.