extra data in stats

This commit is contained in:
2025-04-08 08:18:27 -04:00
parent 247ef50e49
commit 01ecccc928
3 changed files with 45 additions and 11 deletions

View File

@@ -418,4 +418,36 @@ form.inline-form {
.alert-error {
background-color: #f8d7da;
color: #721c24;
}
}
.auto-refresh-toggle {
margin-top: 1rem;
margin-bottom: 1.5rem;
padding: 0.5rem 1rem;
background-color: var(--card-bg);
border: 1px solid #666;
border-radius: 8px;
font-size: 0.95rem;
display: flex;
align-items: center;
gap: 1rem;
color: var(--fg);
}
.auto-refresh-toggle label {
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: bold;
cursor: pointer;
}
.auto-refresh-toggle input[type="checkbox"] {
transform: scale(1.2);
accent-color: var(--accent);
}
.auto-refresh-toggle #refresh-status {
font-style: italic;
opacity: 0.8;
}