diff --git a/apps/client/src/stylesheets/theme-next/shell.css b/apps/client/src/stylesheets/theme-next/shell.css index cf02b6588..dd3a58ca9 100644 --- a/apps/client/src/stylesheets/theme-next/shell.css +++ b/apps/client/src/stylesheets/theme-next/shell.css @@ -67,8 +67,8 @@ body.background-effects.platform-win32.layout-vertical #vertical-main-container background-color: var(--root-background); } -/* Settings page */ -body.background-effects.platform-win32 #center-pane .note-split.options { +/* Note split with background effects */ +body.background-effects.platform-win32 #center-pane .note-split.bgfx { --note-split-background-color: var(--center-pane-background-color-bgfx); } diff --git a/apps/client/src/widgets/note_wrapper.ts b/apps/client/src/widgets/note_wrapper.ts index 559f9ece9..9d1be7794 100644 --- a/apps/client/src/widgets/note_wrapper.ts +++ b/apps/client/src/widgets/note_wrapper.ts @@ -52,6 +52,7 @@ export default class NoteWrapperWidget extends FlexContainer { const note = this.noteContext?.note; if (!note) { + this.$widget.addClass("bgfx"); return; } @@ -61,7 +62,7 @@ export default class NoteWrapperWidget extends FlexContainer { this.$widget.addClass(utils.getNoteTypeClass(note.type)); this.$widget.addClass(utils.getMimeTypeClass(note.mime)); - this.$widget.toggleClass("options", note.isOptions()); + this.$widget.toggleClass("bgfx", note.isOptions()); this.$widget.toggleClass("protected", note.isProtected); const noteLanguage = note?.getLabelValue("language");