From eaff4abbcabf08a8199ca7a08d51fa4f07d6fe6d Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 5 Sep 2026 19:08:37 +0200 Subject: [PATCH] Make the reset link look like it belongs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Every other interactive element on the account page is amber; the browser default made this one blue and underlined, which reads as something pasted in from another site — not the impression to give somebody who already thinks they have lost their account. Spotted in a screenshot of the rendered page, not in the markup. --- pb_public/index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pb_public/index.html b/pb_public/index.html index efd4070..f41c9af 100644 --- a/pb_public/index.html +++ b/pb_public/index.html @@ -25,6 +25,12 @@ width:100%; padding:12px; border-radius:10px; border:1px solid var(--line); background:var(--bg); color:var(--fg); font-size:15px; } input:focus, select:focus { outline:2px solid var(--amber); border-color:transparent; } + /* Every other interactive thing on this page is amber. A browser-default blue + underlined link in the middle of it reads as something pasted in from + another site, which is not what you want somebody to think while they are + already worried they have lost their account. */ + a { color:var(--amber); text-decoration:none; } + a:hover, a:focus-visible { text-decoration:underline; } .row { display:flex; gap:10px; } .row > * { flex:1; min-width:0; } .hint { font-size:12px; color:var(--muted); margin:5px 0 0; line-height:1.45; } .check { display:flex; gap:10px; align-items:flex-start; margin-top:14px;