From def58a99076d354b6bcf6d5b535fde82c373e1a1 Mon Sep 17 00:00:00 2001 From: BoulderBadgeDad Date: Thu, 28 May 2026 22:54:31 -0700 Subject: [PATCH] UI consistency (page shell 2/N): automations adopts .page-shell card First of the "flat -> card" conversions. The automations list view sat directly on the page background (.automations-container = bare padding) while its inner .dashboard-header is the same header dashboard uses. Adopt .page-shell so the page becomes a floating gradient card structurally identical to the dashboard (page-shell card > dashboard-header > content). - Drop .automations-container's bespoke `padding: 20px 24px` (card padding now from .page-shell); keep the class as the mobile/JS hook. - Add `page-shell` to the container in markup. Visible change by design (this page was not previously a card). Mobile keeps its existing .automations-container padding override. --- webui/index.html | 2 +- webui/static/style.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/webui/index.html b/webui/index.html index d067db76..1f60ab60 100644 --- a/webui/index.html +++ b/webui/index.html @@ -2280,7 +2280,7 @@
-
+

Automations

diff --git a/webui/static/style.css b/webui/static/style.css index a5fedaaf..3846e676 100644 --- a/webui/static/style.css +++ b/webui/static/style.css @@ -43838,7 +43838,7 @@ body.downloads-disabled [onclick*="DownloadMissing"]:not([onclick*="close"]) { AUTOMATIONS PAGE =========================== */ -.automations-container { padding: 20px 24px; } +/* .automations-container: card styling from .page-shell */ .automations-list { display: flex; flex-direction: column; gap: 0; } #automations-list-view { padding-bottom: 10vh; }