From 520381e22bfc8da6199c017d60a9b4d143024060 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Fri, 21 Aug 2026 12:52:29 -0400 Subject: [PATCH] =?UTF-8?q?fix(frontend):=20drop=20the=20three=20.modal-ov?= =?UTF-8?q?erlay=20copies=20the=20comment-preceded=20rule=20regex=20skippe?= =?UTF-8?q?d=20=E2=80=94=20components.css=20owns=20it=20(#2831)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- frontend/src/components/SystemsSection.vue | 7 ------- frontend/src/views/ProjectListView.vue | 10 ---------- frontend/src/views/SnippetListView.vue | 9 --------- 3 files changed, 26 deletions(-) diff --git a/frontend/src/components/SystemsSection.vue b/frontend/src/components/SystemsSection.vue index 3d3b23f..f1ef37b 100644 --- a/frontend/src/components/SystemsSection.vue +++ b/frontend/src/components/SystemsSection.vue @@ -515,11 +515,4 @@ async function confirmDelete() { } .skel-row--short { width: 65%; } -/* ── Modal ────────────────────────────────────────────────────── */ -.modal-overlay { - position: fixed; inset: 0; - background: var(--fs-overlay); - display: flex; align-items: center; justify-content: center; - z-index: 200; -} diff --git a/frontend/src/views/ProjectListView.vue b/frontend/src/views/ProjectListView.vue index bf4a25a..7ed14fc 100644 --- a/frontend/src/views/ProjectListView.vue +++ b/frontend/src/views/ProjectListView.vue @@ -559,16 +559,6 @@ function overallPct(project: Project): { total: number; pct: number } { color: var(--fs-text-tertiary); } -/* Modal */ -.modal-overlay { - position: fixed; - inset: 0; - background: var(--fs-overlay); - display: flex; - align-items: center; - justify-content: center; - z-index: 200; -} .modal-card { max-width: 480px; display: flex; diff --git a/frontend/src/views/SnippetListView.vue b/frontend/src/views/SnippetListView.vue index 27609f9..80b7b54 100644 --- a/frontend/src/views/SnippetListView.vue +++ b/frontend/src/views/SnippetListView.vue @@ -903,15 +903,6 @@ function usageTitle(s: SnippetListItem): string { } /* Merge modal */ -.modal-overlay { - position: fixed; - inset: 0; - background: var(--fs-overlay); - display: flex; - align-items: center; - justify-content: center; - z-index: 200; -} .modal-card { max-width: 460px; display: flex; -- 2.54.0