From de8ae7d6804e84ac607653cde57fa54f2288f77f Mon Sep 17 00:00:00 2001 From: lizzie Date: Tue, 4 Aug 2026 03:42:52 +0000 Subject: [PATCH 1/2] fix: gif picker on white mode --- src/webpage/style.css | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/webpage/style.css b/src/webpage/style.css index 1fb1826..7b303b5 100644 --- a/src/webpage/style.css +++ b/src/webpage/style.css @@ -5017,14 +5017,15 @@ fieldset input[type="radio"] { .gifPreviewBox { position: relative; width: 2in; + height: 1in; margin-bottom: 10px; border-radius: 7px; overflow: hidden; cursor: pointer; img { - width: 2in; - height: 1in; + width: 100%; + height: 100%; object-fit: cover; } span { @@ -5036,8 +5037,9 @@ fieldset input[type="radio"] { display: inline-flex; align-items: center; justify-content: center; - background: color-mix(in srgb, var(--card-bg) 60%, transparent); font-weight: bold; + color: white; + background: color-mix(in srgb, black 25%, transparent); } } .gifbox { From 930911efd72ef89f3ba32f6eed3d4245c3c5e39f Mon Sep 17 00:00:00 2001 From: lizzie Date: Tue, 4 Aug 2026 03:46:02 +0000 Subject: [PATCH 2/2] keep same blackness colour --- src/webpage/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webpage/style.css b/src/webpage/style.css index 7b303b5..27bfa45 100644 --- a/src/webpage/style.css +++ b/src/webpage/style.css @@ -5039,7 +5039,7 @@ fieldset input[type="radio"] { justify-content: center; font-weight: bold; color: white; - background: color-mix(in srgb, black 25%, transparent); + background: color-mix(in srgb, black 50%, transparent); } } .gifbox {