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.
This commit is contained in:
Flatlogic Bot 2026-04-22 18:13:05 +00:00
parent 0ceceebba4
commit e0d2c74360

View File

@ -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);
}