From dac427a990ac2eec3497230a661f9243e9d694e9 Mon Sep 17 00:00:00 2001 From: Tadeu Tupinamba Date: Fri, 6 Feb 2026 10:33:28 -0300 Subject: [PATCH] fix(table): resolve column resize only working on first page (SD-1772) Use the overlay's own offset parent for position calculations instead of the table element's offset parent. The table fragment's offsetParent is its .superdoc-page container, but the resize overlay is rendered as a child of .super-editor whose offset parent is .super-editor-container. This coordinate space mismatch caused the overlay to be positioned at page-relative coordinates within the editor-container space, placing it off-screen for tables on any page after the first. --- .../src/components/TableResizeOverlay.vue | 28 +++++++++++++------ 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/packages/super-editor/src/components/TableResizeOverlay.vue b/packages/super-editor/src/components/TableResizeOverlay.vue index d30a4827c0..0ecbffbb97 100644 --- a/packages/super-editor/src/components/TableResizeOverlay.vue +++ b/packages/super-editor/src/components/TableResizeOverlay.vue @@ -1,6 +1,12 @@