Add autostart toggle button to dashboard target items

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-26 00:43:13 +03:00
parent f0e8f0ef33
commit 3bfa9062f9
3 changed files with 53 additions and 2 deletions

View File

@@ -186,6 +186,31 @@
gap: 4px;
}
.dashboard-autostart-btn {
background: none;
border: none;
color: var(--text-muted);
font-size: 0.8rem;
width: 24px;
height: 24px;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
border-radius: 4px;
transition: color 0.2s, background 0.2s;
}
.dashboard-autostart-btn:hover {
color: var(--warning-color, #ffc107);
background: rgba(255, 193, 7, 0.1);
}
.dashboard-autostart-btn.active {
color: var(--warning-color, #ffc107);
}
.dashboard-status-dot {
font-size: 1rem;
line-height: 1;