From b90fd59544f51f2911c5a2c89a4d00af0df1cc0f Mon Sep 17 00:00:00 2001 From: Gmer4Lfe Date: Sun, 16 Aug 2026 12:02:08 -0400 Subject: [PATCH] Separate the four uptime periods so they read as four graphs, not one --- Plugin/unraid/pages/auth.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Plugin/unraid/pages/auth.php b/Plugin/unraid/pages/auth.php index c076276..53c4950 100644 --- a/Plugin/unraid/pages/auth.php +++ b/Plugin/unraid/pages/auth.php @@ -307,9 +307,12 @@ require_once dirname(__DIR__) . '/include/ai_chat.php'; as one of them mattering more. */ /* The domain column is capped rather than 1fr: at 1fr on a 3440 monitor it took half the card and squeezed the four graphs — the names are the label here, the graphs are the content. */ +/* 22px between the periods, not 10. Four strips of small bars sitting a hair apart read as one + long graph with seams in it — the gap has to be wider than the space between the bars inside a + strip by enough that the eye groups the bars first and the columns second. */ .vv-au-hb-head, .vv-au-hb-row { display:grid; grid-template-columns:minmax(160px,300px) repeat(4, minmax(96px,1fr)); - gap:10px; align-items:center; padding:5px 12px; + gap:22px; align-items:center; padding:5px 12px; } .vv-au-hb-head { font-size:9px; letter-spacing:.06em; text-transform:uppercase; color:#3a3a3a; border-bottom:1px solid #1e1e1e; padding-top:7px; padding-bottom:7px; }