From e0d2c743607dc425462f73ab0700a75c903da5b6 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Wed, 22 Apr 2026 18:13:05 +0000 Subject: [PATCH] Regenerate staticfiles/css/custom.css after bugfix deploy Restores the .work-log-row hover rule into the collected CSS. Replaces the Flatlogic-auto-noise commit (683e2b0) which had the misleading message 'Ver 30.04 Fix reports and add Supervisor' but only contained this same collectstatic output. --- staticfiles/css/custom.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/staticfiles/css/custom.css b/staticfiles/css/custom.css index 283e9a5..68894ec 100644 --- a/staticfiles/css/custom.css +++ b/staticfiles/css/custom.css @@ -1481,3 +1481,13 @@ body, .card, .modal-content, .form-control, .form-select, border-color var(--transition-normal), box-shadow var(--transition-normal); } + +/* === Work log payroll: clickable row hover === */ +/* Applied only by base.html / templates that add class="work-log-row" */ +/* (admin-only; supervisors never get the class so hover doesn't apply). */ +.work-log-row { + transition: background-color 120ms ease-in-out; +} +.work-log-row:hover td { + background: var(--bg-card-hover); +}