dashboard: show when an approval was requested (closes #272)

This commit is contained in:
iris 2026-05-22 20:06:45 +02:00
parent 908cadb151
commit a9a10b631f
4 changed files with 40 additions and 2 deletions

View file

@ -299,6 +299,18 @@ code {
flex-wrap: wrap;
gap: 0.3em;
}
/* When the approval was requested right-aligned in the head row;
goes amber once it has been pending 1h so a stale request stands
out at a glance (issue #272). */
.approval-ts {
margin-left: auto;
color: var(--muted);
font-size: 0.85em;
}
.approval-ts.stale {
color: var(--amber);
text-shadow: 0 0 6px rgba(250, 179, 135, 0.5);
}
.approval-body {
margin: 0.45em 0;
padding-left: 1.3em;