From b86c67dbe800d04cb9810343dfc7abc75f4aae92 Mon Sep 17 00:00:00 2001 From: gramps Date: Mon, 13 Jul 2026 15:55:46 -0700 Subject: [PATCH] fix: match WEB button color to SEND button for better contrast --- templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index 1b33673..754dcfb 100644 --- a/templates/index.html +++ b/templates/index.html @@ -215,8 +215,8 @@ body { font-family: var(--font-body); background: var(--bg-primary); color: var( .send-btn:hover { background:var(--accent); } .stop-btn { padding:12px 20px; background:var(--danger); border:none; border-radius:var(--radius); color:#fff; font-family:var(--font-mono); font-size:13px; font-weight:600; cursor:pointer; } .stop-btn:hover { background:var(--danger-hover); } -.search-btn { padding:12px 16px; background:var(--warning); border:none; border-radius:var(--radius); color:#fff; font-family:var(--font-mono); font-size:13px; font-weight:600; cursor:pointer; white-space:nowrap; transition:background 0.2s; } -.search-btn:hover { background:#e67e22; } +.search-btn { padding:12px 16px; background:var(--accent-dim); border:none; border-radius:var(--radius); color:#fff; font-family:var(--font-mono); font-size:13px; font-weight:600; cursor:pointer; white-space:nowrap; transition:background 0.2s; } +.search-btn:hover { background:var(--accent); } .search-btn:disabled { background:var(--text-muted); cursor:not-allowed; } .file-preview { max-width:900px; margin:0 auto 8px; display:none; align-items:center; gap:10px; background:var(--bg-tertiary); border:1px solid var(--border); border-radius:var(--radius); padding:8px 12px; } .file-preview.visible { display:flex; }