Fix field descriptions blocking cursor from being set (#2018)

- happens when focus is in HTML editor
This commit is contained in:
Henrik Giesel 2022-08-17 09:21:13 +02:00 committed by GitHub
parent c7f3bae738
commit 678c354fed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,10 +32,13 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
<style> <style>
.field-description { .field-description {
position: absolute; position: absolute;
inset: 0; top: 0;
left: 0;
right: 0;
bottom: 0;
cursor: text;
opacity: 0.4; opacity: 0.4;
pointer-events: none;
/* same as in ContentEditable */ /* same as in ContentEditable */
padding: 6px; padding: 6px;