summaryrefslogtreecommitdiff
path: root/web/style.css
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-09 01:17:05 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-09 01:17:05 +0000
commit13846ea4ce4bacfadda6f86c5e48e5e76e13db07 (patch)
tree20838cbcbc343e8cd8b8f6bb0f8ad347c3fa52b3 /web/style.css
parentf9d2056f4d10fe7dde71f5d17d8e8c473b3a611f (diff)
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.
Diffstat (limited to 'web/style.css')
-rw-r--r--web/style.css55
1 files changed, 0 insertions, 55 deletions
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 {