From 362ecba98d3cc85ac8f22cd67d3e618336d12741 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 11 Nov 2025 15:32:59 +0200 Subject: [PATCH] fix(popup_editor): drag indicator not visible (closes #7686) --- apps/client/src/widgets/dialogs/popup_editor.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/client/src/widgets/dialogs/popup_editor.ts b/apps/client/src/widgets/dialogs/popup_editor.ts index 2ec95351a..170da7a13 100644 --- a/apps/client/src/widgets/dialogs/popup_editor.ts +++ b/apps/client/src/widgets/dialogs/popup_editor.ts @@ -11,6 +11,7 @@ const TPL = /*html*/`\ /** Reduce the z-index of modals so that ckeditor popups are properly shown on top of it. */ body.popup-editor-open > .modal-backdrop { z-index: 998; } body.popup-editor-open .popup-editor-dialog { z-index: 999; } + body.popup-editor-open .ck-clipboard-drop-target-line { z-index: 1000; } body.desktop .modal.popup-editor-dialog .modal-dialog { max-width: 75vw;