From 683e2b032d68deede9d38adc5d9fffe2dc16a5d8 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Wed, 22 Apr 2026 17:57:09 +0000 Subject: [PATCH] Ver 30.04 Fix reports and add Supervisor --- 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); +}