From 70ec060b7a5a8190b3d5b0e37430a160243ad4fd Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Wed, 22 Apr 2026 14:43:59 -0400 Subject: [PATCH] style(workspace-notes): move active-note indicator to right edge Anchors it to the editor side rather than the tasks-panel side. Co-Authored-By: Claude Opus 4.7 --- frontend/src/components/WorkspaceNoteEditor.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/WorkspaceNoteEditor.vue b/frontend/src/components/WorkspaceNoteEditor.vue index 4ef2614..2a8c613 100644 --- a/frontend/src/components/WorkspaceNoteEditor.vue +++ b/frontend/src/components/WorkspaceNoteEditor.vue @@ -551,13 +551,13 @@ defineExpose({ reload: loadProjectNotes }); border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); cursor: pointer; gap: 0.15rem; - border-left: 2px solid transparent; + border-right: 2px solid transparent; transition: background 0.12s; } .note-row:hover { background: color-mix(in srgb, var(--color-primary) 5%, var(--color-surface)); } .note-row.active { background: color-mix(in srgb, var(--color-primary) 8%, var(--color-surface)); - border-left-color: var(--color-primary); + border-right-color: var(--color-primary); } .note-row-main {