From ee0d9c881e7249520c1c440d05d7027301d64273 Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Tue, 24 Mar 2026 08:20:04 +0100 Subject: [PATCH] fix: column resize handle now accessible above add/delete buttons Resize handle: wider (9px), z-40 (above z-30 buttons). Add-column button moved to bottom-right corner to avoid overlap. Co-Authored-By: Claude Opus 4.6 --- admin-lehrer/components/grid-editor/GridTable.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/admin-lehrer/components/grid-editor/GridTable.tsx b/admin-lehrer/components/grid-editor/GridTable.tsx index 22f0561..02b32f4 100644 --- a/admin-lehrer/components/grid-editor/GridTable.tsx +++ b/admin-lehrer/components/grid-editor/GridTable.tsx @@ -296,25 +296,25 @@ export function GridTable({ x )} - {/* Add column button (visible on hover, after this column) */} + {/* Add column button — small icon at bottom-right, below resize handle */} {onAddColumn && ( )} - {/* Right-edge resize handle */} + {/* Right-edge resize handle — wide grab area, highest z-index */} {ci < numCols - 1 && (
{ e.stopPropagation() handleColResizeStart(ci, e.clientX)