diff --git a/templates/index.html b/templates/index.html index eb46004..b62589b 100644 --- a/templates/index.html +++ b/templates/index.html @@ -60,10 +60,9 @@ .badge-card { background: var(--blue-light); color: var(--blue); } .badge-kasse { background: var(--amber-light); color: var(--amber); } .item-qty { padding: 0.35rem 0.4rem; } - .item-qty input { width: 100%; border: 1px solid transparent; border-radius: 5px; padding: 4px 5px; font-size: 11px; font-family: var(--mono); background: transparent; color: var(--muted); text-align: center; outline: none; transition: border-color 0.15s, background 0.15s; cursor: text; } - .item-qty input:hover { border-color: var(--border); background: var(--bg); } + .item-qty input { width: 100%; border: 1px solid var(--border); border-radius: 5px; padding: 6px 5px; font-size: 11px; font-family: var(--mono); background: var(--bg); color: var(--muted); text-align: center; outline: none; transition: border-color 0.15s, background 0.15s; cursor: text; min-height: 32px; } .item-qty input:focus { border-color: var(--accent); background: white; color: var(--text); } - .item-qty input.modified { color: var(--accent); font-weight: 500; } + .item-qty input.modified { color: var(--accent); font-weight: 500; border-color: #f0b8ab; background: var(--accent-light); } .item-est { padding: 0.7rem 0.5rem; font-size: 12px; font-family: var(--mono); color: var(--muted); text-align: right; } .item-actual { padding: 0.45rem 0.75rem 0.45rem 0.5rem; } .item-actual input { width: 100%; border: 1px solid var(--border); border-radius: 6px; padding: 5px 8px; font-size: 13px; font-family: var(--mono); background: var(--bg); color: var(--text); text-align: right; outline: none; transition: border-color 0.15s, background 0.15s; }