[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
This commit is contained in:
parent
d451f164a3
commit
a21f6ebf6b
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
|
Reference in a new issue