feat: enhance timesheet summary with today highlighting and improved CSS styles
All checks were successful
Publish Container / publish (push) Successful in 5m43s

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Marco 2026-04-23 00:11:00 +02:00
commit 0d5b48b891
3 changed files with 36 additions and 3 deletions

View file

@ -958,6 +958,26 @@ h1:focus {
background-color: #e2e3e5 !important;
}
.timesheet-summary-table .timesheet-summary-day-today {
box-shadow:
inset 0.15rem 0 0 var(--wt-calendar-today-ring),
inset -0.15rem 0 0 var(--wt-calendar-today-ring);
}
.timesheet-summary-table thead .timesheet-summary-day-today {
box-shadow:
inset 0.15rem 0 0 var(--wt-calendar-today-ring),
inset -0.15rem 0 0 var(--wt-calendar-today-ring),
inset 0 0.15rem 0 var(--wt-calendar-today-ring);
}
.timesheet-summary-table tbody tr:last-child .timesheet-summary-day-today {
box-shadow:
inset 0.15rem 0 0 var(--wt-calendar-today-ring),
inset -0.15rem 0 0 var(--wt-calendar-today-ring),
inset 0 -0.15rem 0 var(--wt-calendar-today-ring);
}
[data-bs-theme=dark] .timesheet-summary-table .timesheet-summary-day-danger {
background-color: #5b2833 !important;
}