mirror of
https://github.com/voideditor/void
synced 2026-05-23 01:18:25 +00:00
fix: add position:relative to .interactive-session for dnd overlay (fixes #925)
The .chat-dnd-overlay element uses position:absolute to cover the chat panel during drag-and-drop, but its parent .interactive-session lacked a positioning context (position:relative). This caused the overlay to be positioned relative to a wrong ancestor, making it appear off-screen or in an incorrect location with no visual feedback during drag operations.
This commit is contained in:
parent
17e7a5b152
commit
b68d519314
1 changed files with 1 additions and 0 deletions
|
|
@ -6,6 +6,7 @@
|
|||
.interactive-session {
|
||||
max-width: 850px;
|
||||
margin: auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.interactive-list > .monaco-list > .monaco-scrollable-element > .monaco-list-rows > .monaco-list-row > .monaco-tl-row > .monaco-tl-twistie {
|
||||
|
|
|
|||
Loading…
Reference in a new issue