From 557870c6f35cf976b7398be31867f43cfbc0dc38 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 24 Aug 2026 22:17:26 +0000 Subject: [PATCH] dashboard: pick up the list indent default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Regenerated with `pyauto-brain intake dashboard --apply` after PyAutoBrain#273 replaced the UA stylesheet's 40px list indent with 1.15rem, so a bare list lines up with the rest of the page instead of stepping in from it. CSS only, and no visible change on this page: it carries no bare list — only `.stats` and `.boards`, both of which set their own padding. The regeneration keeps its embedded stylesheet in step with the family. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01VhpLPmmoSFAtVpppG8azVA --- dashboard.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dashboard.html b/dashboard.html index debd7bcb..da5f262f 100644 --- a/dashboard.html +++ b/dashboard.html @@ -33,6 +33,13 @@ a:hover{text-decoration:underline} .muted{color:var(--muted)} .ok{color:var(--ok)}.warn{color:var(--warn)}.bad{color:var(--bad)} +/* A bare list is page text, not a quotation. The UA's 40px indent steps it in + from every other block on the page — measured on the Heart board, the + evidence-gap bullets started at x=56 against a 16px body margin, which + reads as a stray inset column on a phone. The lists that are layout rather + than prose (.stats, .boards, ul.det) set their own padding and win on + specificity. */ +ul,ol{padding-left:1.15rem} code{font-family:ui-monospace,SFMono-Regular,Menlo,monospace;font-size:.92em; background:var(--btn);border:1px solid var(--line);padding:.05em .35em; border-radius:5px}