Make task status pills interactive

This commit is contained in:
pewdiepie-archdaemon
2026-06-01 14:54:24 +09:00
parent ee62acd3f1
commit 6872679f31
2 changed files with 25 additions and 7 deletions
+10 -3
View File
@@ -9955,7 +9955,7 @@ textarea.memory-add-input {
opacity: 0.85 !important;
filter: saturate(0.9);
}
.task-paused-badge {
.task-status-badge {
display: inline-flex;
align-items: center;
gap: 3px;
@@ -9963,11 +9963,18 @@ textarea.memory-add-input {
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--orange, #ff9800);
background: color-mix(in srgb, var(--orange, #ff9800) 12%, transparent);
padding: 2px 6px;
border-radius: 10px;
flex-shrink: 0;
cursor: pointer;
}
.task-paused-badge {
color: var(--orange, #ff9800);
background: color-mix(in srgb, var(--orange, #ff9800) 12%, transparent);
}
.task-active-badge {
color: var(--green, #50fa7b);
background: color-mix(in srgb, var(--green, #50fa7b) 12%, transparent);
}
.task-builtin-badge {