From 79a15030bafb701bff5120069fedd69eaec3ea9e Mon Sep 17 00:00:00 2001 From: fraxle Date: Thu, 30 Jul 2026 00:19:09 +0100 Subject: [PATCH] 3.5.9.2 Fix at a glance position --- assets/css/ui.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/assets/css/ui.css b/assets/css/ui.css index debc949..bf83009 100644 --- a/assets/css/ui.css +++ b/assets/css/ui.css @@ -1651,6 +1651,18 @@ top: 16px; } +/* At ≥1024px the profile row + hourly table header both go sticky and pin + to the top of the viewport (see .active-profile-row / .utci-thead-sticky + in table.css, z-index 11 and 5). Left at top:16px the rail's sticky box + scrolls up underneath that stack and gets hidden behind it once it hits + the header height (~104px). Push the rail's stick point below both bars + instead so it settles under them rather than being covered. */ +@media (min-width: 1024px) { + .glance-rail { + top: 104px; + } +} + .insight-panel--glance { width: 100%; }