fix: instructor notes block settings menu overlapped by sidebar

PR #1987 fixed the "+" (Add block) menu positioning but missed the
block settings menu (6-dot "Click to tune" icon) which uses a different
parent container (.ce-toolbar__actions instead of .ce-toolbox).

This adds the missing selector to fix both menus.

Related: #1990
This commit is contained in:
Adarsh Singh
2026-01-24 00:25:21 +05:30
parent b429fb2e47
commit 05d21cf817

View File

@@ -665,7 +665,8 @@ iframe {
padding: 8px;
}
.codex-editor--narrow .ce-toolbox .ce-popover {
.codex-editor--narrow .ce-toolbox .ce-popover,
.codex-editor--narrow .ce-toolbar__actions .ce-popover {
right: unset;
left: initial;
}