From 7b6d11bffab899b50e20b5e5189c53661f65d8e7 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Wed, 16 Jul 2025 05:04:06 +0300 Subject: [PATCH] style/collections/tables: fix frozen cells overlapping with the outline of the left-side cells --- apps/client/src/stylesheets/table.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/client/src/stylesheets/table.css b/apps/client/src/stylesheets/table.css index 18193088b..543a2e9d3 100644 --- a/apps/client/src/stylesheets/table.css +++ b/apps/client/src/stylesheets/table.css @@ -66,6 +66,10 @@ border-bottom-color: var(--col-header-arrow-inactive-color); } +.tabulator div.tabulator-header .tabulator-frozen.tabulator-frozen-left { + margin-left: var(--cell-editing-border-width); +} + .tabulator div.tabulator-header .tabulator-col, .tabulator div.tabulator-header .tabulator-frozen.tabulator-frozen-left { background: var(--col-header-background-color); @@ -111,6 +115,10 @@ /* Cell */ +.tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left { + margin-right: var(--cell-editing-border-width); +} + .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left, .tabulator-row .tabulator-cell { border-right-color: transparent;