mirror of
https://github.com/zadam/trilium.git
synced 2025-11-05 04:45:47 +01:00
style: use background effects for empty note, refactor
This commit is contained in:
@@ -67,8 +67,8 @@ body.background-effects.platform-win32.layout-vertical #vertical-main-container
|
|||||||
background-color: var(--root-background);
|
background-color: var(--root-background);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Settings page */
|
/* Note split with background effects */
|
||||||
body.background-effects.platform-win32 #center-pane .note-split.options {
|
body.background-effects.platform-win32 #center-pane .note-split.bgfx {
|
||||||
--note-split-background-color: var(--center-pane-background-color-bgfx);
|
--note-split-background-color: var(--center-pane-background-color-bgfx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -52,6 +52,7 @@ export default class NoteWrapperWidget extends FlexContainer<BasicWidget> {
|
|||||||
|
|
||||||
const note = this.noteContext?.note;
|
const note = this.noteContext?.note;
|
||||||
if (!note) {
|
if (!note) {
|
||||||
|
this.$widget.addClass("bgfx");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -61,7 +62,7 @@ export default class NoteWrapperWidget extends FlexContainer<BasicWidget> {
|
|||||||
|
|
||||||
this.$widget.addClass(utils.getNoteTypeClass(note.type));
|
this.$widget.addClass(utils.getNoteTypeClass(note.type));
|
||||||
this.$widget.addClass(utils.getMimeTypeClass(note.mime));
|
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);
|
this.$widget.toggleClass("protected", note.isProtected);
|
||||||
|
|
||||||
const noteLanguage = note?.getLabelValue("language");
|
const noteLanguage = note?.getLabelValue("language");
|
||||||
|
|||||||
Reference in New Issue
Block a user