From de6a90bbf54af9c4988f573d317671d2fea46d6e Mon Sep 17 00:00:00 2001 From: Bendik Aagaard Lynghaug Date: Tue, 1 Sep 2026 20:01:28 +0200 Subject: [PATCH] Gateway submit-as-link loses the underline A no-requirements gateway alternative renders .alt-submit as an for plain navigation; strip the link underline so it reads as the button it's styled to be. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01Y42TyF8Zu7NGRR2893vNcZ --- style/main.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/style/main.css b/style/main.css index 04f9383..fa14244 100644 --- a/style/main.css +++ b/style/main.css @@ -861,6 +861,10 @@ textarea:focus { padding: 0.75rem 1.4rem; cursor: pointer; transition: filter 120ms, transform 120ms; + /* A gateway alternative renders this as an (navigation, no POST); + kill the link chrome so it reads as the button it looks like. */ + text-decoration: none; + display: inline-block; } .alt-submit:hover {