From 13846ea4ce4bacfadda6f86c5e48e5e76e13db07 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Mon, 9 Mar 2026 01:17:05 +0000 Subject: feat: delete templates feature and allow requeueing BUDGET_EXCEEDED tasks Removed all template-related code from frontend (tabs, modals, logic) and backend (routes, files, DB table). Updated BUDGET_EXCEEDED tasks to be requeueable with a Restart button. Fixed ReferenceError in isUserEditing for Node.js tests. --- web/style.css | 55 ------------------------------------------------------- 1 file changed, 55 deletions(-) (limited to 'web/style.css') diff --git a/web/style.css b/web/style.css index 9cfe140..2b872fe 100644 --- a/web/style.css +++ b/web/style.css @@ -517,61 +517,6 @@ dialog label select:focus { margin-top: 8px; } -/* Template list */ -.template-list { - display: flex; - flex-direction: column; - gap: 0.75rem; -} - -/* Template card */ -.template-card { - background: var(--surface); - border: 1px solid var(--border); - border-radius: 0.5rem; - padding: 0.875rem 1rem; - display: flex; - flex-direction: column; - gap: 0.375rem; -} - -.template-name { - font-weight: 600; - font-size: 0.95rem; -} - -.template-description { - font-size: 0.82rem; - color: var(--text-muted); - display: -webkit-box; - -webkit-line-clamp: 2; - -webkit-box-orient: vertical; - overflow: hidden; -} - -.template-tags { - display: flex; - flex-wrap: wrap; - gap: 0.375rem; - margin-top: 0.125rem; -} - -.tag-chip { - font-size: 0.7rem; - font-weight: 600; - padding: 0.2em 0.55em; - border-radius: 999px; - background: var(--border); - color: var(--text-muted); -} - -.template-card-footer { - display: flex; - align-items: center; - gap: 0.5rem; - margin-top: 0.25rem; -} - /* ── Side panel ───────────────────────────────────────────────────────────── */ .panel-backdrop { -- cgit v1.2.3