Prevent selecting static text on text annotations.

Otherwise an accidential drag-drop will try to load a PDF from the
selected text.
This commit is contained in:
Joachim Bauch 2021-12-16 16:18:35 +01:00
parent 191667e7e0
commit 0583fa41fe
No known key found for this signature in database
GPG key ID: 77C1D22D53E15F02

View file

@ -281,6 +281,7 @@
margin-bottom: 5px;
font-size: 18px;
cursor: pointer;
user-select: none;
}
.textareaContainer .deleteButton[disabled] {
@ -298,4 +299,5 @@
text-overflow: ellipsis;
white-space: nowrap;
border-radius: 4px;
user-select: none;
}