From 5e2c31598caeecef542acf2f5df010d733aa3605 Mon Sep 17 00:00:00 2001 From: Yuri Karamian Date: Tue, 30 Jun 2026 16:13:22 +0200 Subject: [PATCH] Block note creation in Quick Access/Trash, add icons to trash actions (#188) --- src/lib/components/NoteList.svelte | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/src/lib/components/NoteList.svelte b/src/lib/components/NoteList.svelte index 558fe7f..7ee439e 100644 --- a/src/lib/components/NoteList.svelte +++ b/src/lib/components/NoteList.svelte @@ -990,7 +990,7 @@ {/if} - {#if $viewMode !== 'trash'} + {#if $viewMode !== 'trash' && $viewMode !== 'quickaccess'} - + + {:else} @@ -1131,6 +1137,8 @@
{#if $viewMode === 'trash'}

Trash is empty

+ {:else if $viewMode === 'quickaccess'} +

No starred notes

{:else}

No notes yet

@@ -1720,6 +1728,9 @@ } .selection-action { + display: inline-flex; + align-items: center; + gap: 4px; background: none; border: 1px solid var(--border-color); color: var(--text-primary);