[WEB-2217] fix: drag handle positioning and action (#5349)

* fix: drag handle click action

* fix: drag handle positioning
This commit is contained in:
Aaryan Khandelwal 2024-08-12 15:51:23 +05:30 committed by GitHub
parent f817d70f78
commit 3ffaa4f2ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 29 additions and 20 deletions

View file

@ -8,6 +8,7 @@
opacity 0.2s ease 0.2s,
top 0.2s ease,
left 0.2s ease;
transform: translateX(-50%);
&.side-menu-hidden {
opacity: 0;
@ -16,6 +17,17 @@
}
/* end side menu */
/* drag handle */
#drag-handle {
opacity: 100;
&.drag-handle-hidden {
opacity: 0;
pointer-events: none;
}
}
/* end drag handle */
.ProseMirror:not(.dragging) .ProseMirror-selectednode {
position: relative;
cursor: grab;