fix: sync cron run history selection in control ui

This commit is contained in:
Peter Steinberger
2026-01-15 08:38:12 +00:00
parent 4e6fb47a3f
commit 11d4fc101e
4 changed files with 149 additions and 11 deletions

View File

@@ -441,6 +441,20 @@
background: rgba(0, 0, 0, 0.2);
}
.list-item-clickable {
cursor: pointer;
transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.list-item-clickable:hover {
border-color: var(--border-strong);
}
.list-item-selected {
border-color: var(--accent);
box-shadow: 0 0 0 1px var(--focus);
}
.list-main {
display: grid;
gap: 6px;