diff --git a/static/js/tasks.js b/static/js/tasks.js index d70f5597a..df0f62e4a 100644 --- a/static/js/tasks.js +++ b/static/js/tasks.js @@ -754,9 +754,9 @@ function _renderList() { const titleRow = document.createElement('div'); titleRow.style.cssText = 'display:flex;align-items:center;gap:6px;cursor:pointer;'; const statusBadge = task.status === 'paused' - ? `paused` + ? `` : task.status === 'active' - ? `active` + ? `` : ''; const builtinBadge = task.is_builtin ? `built-in${task.is_modified ? ' · edited' : ''}` diff --git a/static/style.css b/static/style.css index 20c5a9048..e3d137432 100644 --- a/static/style.css +++ b/static/style.css @@ -11050,9 +11050,12 @@ textarea.memory-add-input { filter: saturate(0.9); } .task-status-badge { + appearance: none; + -webkit-appearance: none; display: inline-flex; align-items: center; gap: 3px; + margin: 0; font-size: 9px; font-weight: 600; text-transform: uppercase; @@ -11067,6 +11070,10 @@ textarea.memory-add-input { transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease, filter 0.12s ease; user-select: none; } +.task-state-badge > svg, +.task-state-badge > .task-state-label { + pointer-events: none; +} .task-state-label-mobile { display: none; }