From 2f95fdb244118959da7b8eb93fae777053f86f9e Mon Sep 17 00:00:00 2001 From: Alexander Zinchuk Date: Tue, 9 Aug 2022 13:21:23 +0200 Subject: [PATCH] Settings / Folders: Fix context menu z-index (#1990) --- src/components/ui/Draggable.module.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/ui/Draggable.module.scss b/src/components/ui/Draggable.module.scss index 1887a2f1c..42e60a8df 100644 --- a/src/components/ui/Draggable.module.scss +++ b/src/components/ui/Draggable.module.scss @@ -1,6 +1,11 @@ .container { position: absolute; width: 100%; + z-index: 1; + + &:has(:global(.ListItem-context-menu)) { + z-index: 2; + } } .isDragging {