Ver 30.04 Fix reports and add Supervisor

This commit is contained in:
Flatlogic Bot 2026-04-22 17:57:09 +00:00
parent 6d37d1ba9b
commit 683e2b032d

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