From c92f7d7d60c5e31c26628924f18dfe196728a17c Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Sun, 15 Feb 2026 19:10:58 -0800 Subject: [PATCH] Style constraint level labels as grey pills to match tags --- static/trip.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/trip.html b/static/trip.html index f63e504..edbe3cd 100644 --- a/static/trip.html +++ b/static/trip.html @@ -58,7 +58,7 @@ #trip-settings { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; } #room-size { width: 3.5rem; font-size: 0.85rem; padding: 0.2rem; border: 1px solid var(--wa-color-neutral-300, #ccc); border-radius: 0.25rem; } .constraint-group { display: flex; flex-wrap: wrap; align-items: center; gap: 0.25rem; margin-bottom: 0.2rem; } - .constraint-level { font-size: 0.7rem; font-weight: bold; opacity: 0.6; } + .constraint-level { font-size: 0.65rem; font-weight: bold; background: var(--wa-color-neutral-200, #ddd); color: var(--wa-color-neutral-700, #555); border-radius: 0.25rem; padding: 0.1rem 0.35rem; } .constraint-add { display: flex; gap: 0.5rem; align-items: center; margin-top: 0.3rem; } .constraint-add select { font-size: 0.75rem; padding: 0.15rem; border: 1px solid var(--wa-color-neutral-300, #ccc); border-radius: 0.25rem; } #conflicts { margin-bottom: 0.5rem; }