Fix history timing and retention controls

This commit is contained in:
Sucukdeluxe
2026-03-09 05:16:41 +01:00
parent 09da670eeb
commit 1afce943ae
9 changed files with 246 additions and 18 deletions
+14
View File
@@ -2243,12 +2243,18 @@ body,
display: flex;
flex-direction: column;
gap: 6px;
height: 100%;
min-height: 0;
overflow: auto;
padding-right: 2px;
}
.history-toolbar {
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: space-between;
gap: 12px;
padding: 5px 12px;
background: var(--card);
border: 1px solid var(--border);
@@ -2258,6 +2264,14 @@ body,
color: var(--muted);
}
.history-toolbar-actions {
display: flex;
align-items: center;
justify-content: flex-end;
gap: 8px;
margin-left: auto;
}
.history-card {
cursor: default;
}