From d91c59b7d0d64c69a7a6ac5824ee08ec351da861 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 10 Jul 2025 16:16:09 +0300 Subject: [PATCH] feat(popup_editor): floating classic toolbar --- apps/client/src/widgets/dialogs/popup_editor.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/client/src/widgets/dialogs/popup_editor.ts b/apps/client/src/widgets/dialogs/popup_editor.ts index 91da5088a..402d1d5a2 100644 --- a/apps/client/src/widgets/dialogs/popup_editor.ts +++ b/apps/client/src/widgets/dialogs/popup_editor.ts @@ -38,6 +38,15 @@ const TPL = /*html*/`\ .modal.popup-editor-dialog .note-title-widget input.note-title { font-size: 1em; } + + .modal.popup-editor-dialog .classic-toolbar-widget { + position: sticky; + top: 0; + left: 0; + right: 0; + background: var(--modal-background-color); + z-index: 1000; + }