From 8466a6e0290e8436769f5800afc94851f182a88b Mon Sep 17 00:00:00 2001 From: agentbox Date: Sat, 1 Aug 2026 06:37:20 +0000 Subject: [PATCH] fix: unify ntfy URL input styling with rest of manage-form inputs Add .manage-form label styling and .manage-form input[type="text"] rule to match the existing password input styling, so the ntfy topic URL field looks consistent with the rest of the UI. --- static/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/static/style.css b/static/style.css index cb2711b..7863f4c 100644 --- a/static/style.css +++ b/static/style.css @@ -231,6 +231,8 @@ body { .manage-form { flex: 1; min-width: 220px; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius); } .manage-form h4 { margin-bottom: 8px; font-size: 0.9rem; } .manage-form .hint { margin-bottom: 8px; } +.manage-form label { display: block; margin: 12px 0 4px; font-weight: 500; font-size: 0.85rem; } +.manage-form input[type="text"], .manage-form input[type="password"] { width: 100%; padding: 6px 10px; border: 1px solid var(--border); border-radius: 4px; margin-bottom: 8px; } /* ── Language footer ── */