Merge claude/2

This commit is contained in:
librelad 2026-07-18 19:59:58 +01:00
commit 641b152a82

View File

@ -297,17 +297,19 @@
/* Recessed dark panel wrapping the body same recipe as .backup-snapshots- /* Recessed dark panel wrapping the body same recipe as .backup-snapshots-
container / .tasks-container. */ container / .tasks-container. */
.updater-detail-container { .updater-detail-container {
padding: 4px 16px; padding: 16px;
margin: 16px; margin: 16px;
background: rgba(var(--bg-rgb), 0.2); background: rgba(var(--bg-rgb), 0.2);
border-radius: 8px; border-radius: 8px;
} }
/* Inside the container the Version / Security / Recovery / History sections are /* Inside the container the Version / Security / Recovery / History sections are
separated by divider lines (the fleet row-details, not in this container, keep separated by divider lines (the fleet row-details, not in this container, keep
their gap-only spacing). */ their gap-only spacing). The first/last sections drop their outer padding so
the container's own 16px inset sets an even top/bottom margin. */
.updater-detail-container .updater-detail { gap: 0; padding-top: 0; } .updater-detail-container .updater-detail { gap: 0; padding-top: 0; }
.updater-detail-container .updater-detail-section { padding: 16px 0; } .updater-detail-container .updater-detail-section { padding: 16px 0; }
.updater-detail-container .updater-detail-section:first-child { padding-top: 0; } .updater-detail-container .updater-detail-section:first-child { padding-top: 0; }
.updater-detail-container .updater-detail-section:last-child { padding-bottom: 0; }
.updater-detail-container .updater-detail-section + .updater-detail-section { .updater-detail-container .updater-detail-section + .updater-detail-section {
border-top: 1px solid var(--border-color); border-top: 1px solid var(--border-color);
} }