From 84e16b5c5b06d9944e85d51e8f0f31d422791402 Mon Sep 17 00:00:00 2001 From: Will Miao Date: Tue, 9 Jun 2026 09:52:11 +0800 Subject: [PATCH] refactor(css): remove hardcoded background/border from modal sections - use design tokens instead --- static/css/components/modal/support-modal.css | 2 -- static/css/components/modal/update-modal.css | 2 -- 2 files changed, 4 deletions(-) diff --git a/static/css/components/modal/support-modal.css b/static/css/components/modal/support-modal.css index e35412e1..9d7440fe 100644 --- a/static/css/components/modal/support-modal.css +++ b/static/css/components/modal/support-modal.css @@ -58,8 +58,6 @@ } .support-section { - background: rgba(0, 0, 0, 0.02); - border: 1px solid rgba(0, 0, 0, 0.08); border-radius: var(--border-radius-sm); padding: var(--space-2); margin-bottom: var(--space-2); diff --git a/static/css/components/modal/update-modal.css b/static/css/components/modal/update-modal.css index 6dfe1276..affcce69 100644 --- a/static/css/components/modal/update-modal.css +++ b/static/css/components/modal/update-modal.css @@ -234,8 +234,6 @@ /* Changelog section */ .changelog-section { - background: rgba(0, 0, 0, 0.02); - border: 1px solid rgba(0, 0, 0, 0.08); border-radius: var(--border-radius-sm); padding: var(--space-3); }