From 262fec4daefb2472f3179c4c9fe2ada4ac818d53 Mon Sep 17 00:00:00 2001 From: Beinan Date: Thu, 23 Jul 2026 17:45:03 +0000 Subject: [PATCH] fix(master-ui): stop clipping Duration column and action buttons in tables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The task and experiments tables share `.table-wrap`, which used `overflow: hidden`. Combined with `white-space: nowrap` cells, any table wider than its container had its rightmost content clipped — the task table's Duration column and the experiments table's action buttons. Switch to `overflow-x: auto` so wide tables scroll horizontally instead, matching `.records-table-wrap`. Co-Authored-By: Claude --- crates/lance-context-master/ui/src/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/lance-context-master/ui/src/styles.css b/crates/lance-context-master/ui/src/styles.css index 626b481..7a12d32 100644 --- a/crates/lance-context-master/ui/src/styles.css +++ b/crates/lance-context-master/ui/src/styles.css @@ -286,7 +286,7 @@ body { .table-wrap { border: 1px solid var(--border); border-radius: var(--radius); - overflow: hidden; + overflow-x: auto; background: var(--panel); box-shadow: var(--shadow); }