From a4d805f4110969b77fecab65b0878b2b43f6aa47 Mon Sep 17 00:00:00 2001 From: Algis Dumbris Date: Mon, 17 Aug 2026 13:34:03 +0300 Subject: [PATCH] =?UTF-8?q?fix(docs-site):=20restore=20scrollable=20tables?= =?UTF-8?q?=20=E2=80=94=20display:table=20override=20slid=20wide=20tables?= =?UTF-8?q?=20under=20the=20TOC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The global 'table { display: table; width: 100%; }' in custom.css disabled Infima's display:block + overflow-x:auto markdown-table behavior, so any table wider than the content column (e.g. the telemetry field table) overflowed beneath the right-hand TOC and crushed its last column into extreme row heights. Wide tables now scroll inside the column again. --- website/src/css/custom.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/website/src/css/custom.css b/website/src/css/custom.css index 9109eefd..f0d378e5 100644 --- a/website/src/css/custom.css +++ b/website/src/css/custom.css @@ -55,9 +55,11 @@ font-size: 14px; } -/* Improve table styling */ +/* Tables: keep Infima's default display:block + overflow-x:auto so wide + tables scroll INSIDE the content column instead of sliding under the right + TOC (the old display:table override broke this — see the telemetry page). + width:100% only makes the scroll container span the column. */ table { - display: table; width: 100%; }