From a21f6ebf6b212d2fcc5ba7e5cf46077dc4f0a342 Mon Sep 17 00:00:00 2001 From: discomrade <83621080+discomrade@users.noreply.github.com> Date: Tue, 20 Feb 2024 07:22:31 +0000 Subject: [PATCH] [notes] allow clicking through notes container If the notes extension is enabled, the container would block clicking the image, including right-clicking to save it --- ext/notes/style.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ext/notes/style.css b/ext/notes/style.css index 11265937..86d62168 100644 --- a/ext/notes/style.css +++ b/ext/notes/style.css @@ -1,5 +1,6 @@ .notes-container { position: absolute; + pointer-events: none; } .notes-container .note { @@ -13,6 +14,7 @@ position: absolute; opacity: 0.5; z-index: 1; + pointer-events: auto; } .notes-container .note.editing { opacity: 1; @@ -40,6 +42,7 @@ "save cancel" "delete delete"; z-index: 4; + pointer-events: auto; } .notes-container .editor TEXTAREA { grid-area: text;