🐛(frontend) remove the stray focus outline on presenter slides

A selected image (or any selected node) leaked its editing outline into
the read-only slide. Suppress the selected-node outline so nothing looks
focused unless the user tabs or clicks.

Closes #2393
This commit is contained in:
Nathan Panchout
2026-07-20 09:55:20 +02:00
parent 327c7ba103
commit 708fa837cc
@@ -22,6 +22,12 @@ const slideContentCss = css`
display: none !important;
}
.bn-block-content.ProseMirror-selectednode > *,
.ProseMirror-selectednode > .bn-block-content > *,
.ProseMirror-selectednode {
outline: 0 !important;
}
.bn-block-content[data-content-type='divider'] {
display: none;
}