From f27dc7b60c8122e6564507bb460126d8d2dfea53 Mon Sep 17 00:00:00 2001 From: Gamosoft Date: Tue, 11 Nov 2025 15:50:33 +0100 Subject: [PATCH] added visual indicator to resize panes --- frontend/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index 5c6477e..8054b4c 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -950,9 +950,9 @@ x-show="viewMode === 'split'" @mousedown="startSplitResize($event)" class="split-resize-handle" - style="width: 4px; cursor: col-resize; background-color: transparent; transition: background-color 0.2s; position: relative; z-index: 10;" - @mouseover="$el.style.backgroundColor='var(--accent-primary)'" - @mouseout="if(!isResizingSplit) $el.style.backgroundColor='transparent'" + style="width: 6px; cursor: col-resize; background: linear-gradient(90deg, transparent 0%, var(--border-secondary) 50%, transparent 100%); transition: all 0.2s; position: relative; z-index: 10; opacity: 0.5;" + @mouseover="$el.style.opacity='1'; $el.style.background='var(--accent-primary)'" + @mouseout="if(!isResizingSplit) { $el.style.opacity='0.5'; $el.style.background='linear-gradient(90deg, transparent 0%, var(--border-secondary) 50%, transparent 100%)' }" >