From d1ffe1198bfbfe0bb3584df5429468328df6c779 Mon Sep 17 00:00:00 2001 From: Joshua Laymon Date: Thu, 14 Aug 2025 16:59:47 +0000 Subject: [PATCH] Update web/static/app.css --- web/static/app.css | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/web/static/app.css b/web/static/app.css index a74571d..ab7c509 100644 --- a/web/static/app.css +++ b/web/static/app.css @@ -371,4 +371,30 @@ code,kbd{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,"Liberation Mono .help-panel.open { display: block; } /* optional: smaller heading spacing in the panel */ -.help-panel h3 { margin: 4px 0 10px; } \ No newline at end of file +.help-panel h3 { margin: 4px 0 10px; } + +/* Reuse the search box look for edit/add form fields */ +.input-hero { + width: 100%; + font-size: 16px; + padding: 12px 14px; /* comfortable padding */ + border-radius: 22px; /* same “pill” feel */ +} + +/* For larger textareas on Illustration / Application */ +.textarea-hero { + min-height: 220px; /* roomy by default */ + resize: vertical; +} + +/* Optional: full-width layout inside your form card */ +.entry-form .form-row .search-input { + width: 100%; +} + +/* Keep the same focus ring as your search input */ +.search-input:focus { + outline: none; + border-color: #6b82ff; /* (matches your current focus color) */ + box-shadow: 0 0 0 3px rgba(107,130,255,.25); +} \ No newline at end of file