From f5f114cbfc97b52b8656726f2e12665a8f775177 Mon Sep 17 00:00:00 2001 From: Starrah Date: Mon, 13 Apr 2026 12:01:08 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20ad1b77dd=20=E5=B0=86Radio=E6=94=B9?= =?UTF-8?q?=E4=B8=BA=E5=AE=8C=E5=85=A8=E5=8F=97=E6=8E=A7=E5=90=8E=EF=BC=8C?= =?UTF-8?q?=E5=8E=9F=E6=9D=A5=E7=9A=84input[type=3Dradio]:checked=E7=9A=84?= =?UTF-8?q?css=E4=B8=8D=E5=86=8D=E7=94=9F=E6=95=88=EF=BC=8C=E9=80=A0?= =?UTF-8?q?=E6=88=90radio=E7=82=B9=E5=87=BB=E5=90=8E=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E8=A2=AB=E7=82=B9=E5=87=BB=E7=9A=84=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/themes/aquadx/components.module.scss | 2 +- src/themes/dynamicLight/components.module.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/themes/aquadx/components.module.scss b/src/themes/aquadx/components.module.scss index b74bc84..304d56b 100644 --- a/src/themes/aquadx/components.module.scss +++ b/src/themes/aquadx/components.module.scss @@ -44,7 +44,7 @@ body:has(.root) { input[type=radio] { border-color: #b3c6ff; - &:checked { + &:checked, &[checked] { background-color: #b3c6ff; border-color: #b3c6ff; } diff --git a/src/themes/dynamicLight/components.module.scss b/src/themes/dynamicLight/components.module.scss index a2061ce..39ed451 100644 --- a/src/themes/dynamicLight/components.module.scss +++ b/src/themes/dynamicLight/components.module.scss @@ -48,7 +48,7 @@ body:has(.root) { input[type=radio] { border-color: oklch(0.68 0.17 var(--hue)); - &:checked { + &:checked, &[checked] { background-color: oklch(0.68 0.17 var(--hue)); border-color: oklch(0.68 0.17 var(--hue)); }