From 098844ef7bb46c21a79eda5385b3af7349e864c0 Mon Sep 17 00:00:00 2001 From: marijo Date: Tue, 9 Jun 2026 10:56:31 +0000 Subject: [PATCH] Bold for changed/overriden values --- app.js | 6 +++--- style.css | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/app.js b/app.js index 0af5e32..3b71368 100644 --- a/app.js +++ b/app.js @@ -333,9 +333,9 @@ function renderMonthRow(month) { ${month.year} - ${monthNames[month.month - 1]}${month.expiredFeriefridage > 0 ? `
Expired FF: ${days(month.expiredFeriefridage)}` : ''} ${entries} - - - + + + ${days(month.availableDays)} `; diff --git a/style.css b/style.css index f7df4de..366b56a 100644 --- a/style.css +++ b/style.css @@ -298,6 +298,11 @@ tbody tr:hover { background: rgba(255,255,255,.04); } text-align: right; font-size: .85rem; } +.balance-override-input.is-overridden { + font-weight: 900; + color: var(--brand-dark); + border-color: var(--brand); +} .warnings { display: grid; gap: .55rem; } .warning {