From 088680e568b3ef0e02152edb7596da9d5342c0b1 Mon Sep 17 00:00:00 2001 From: Vinta Chen Date: Tue, 24 Mar 2026 12:40:22 +0800 Subject: [PATCH] fix(css): correct mobile expand-row hiding for col-cat vs expand-row cells col-cat and expand-row cells need different treatment on mobile: - col-cat uses display:none (whole column hidden) - expand-row first/last cells collapse via width/padding/overflow rather than display:none to avoid breaking table layout Co-Authored-By: Claude --- website/static/style.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/website/static/style.css b/website/static/style.css index ce44d49..eadaa13 100644 --- a/website/static/style.css +++ b/website/static/style.css @@ -1110,10 +1110,15 @@ th[data-sort].sort-asc::after { } .col-num, - .col-cat, + .col-cat { + display: none; + } + .expand-row td:first-child, .expand-row td:last-child { - display: none; + width: 0; + padding: 0; + overflow: hidden; } .col-name {