From bacb605a0c1ddfd5e448ccee6eb7d540110c2f33 Mon Sep 17 00:00:00 2001 From: Play Life Bot Date: Fri, 2 Jan 2026 18:24:39 +0300 Subject: [PATCH] Change add dictionary button color to white (v2.8.4) --- VERSION | 2 +- play-life-web/src/components/TestConfigSelection.css | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/VERSION b/VERSION index 9f8d8a9..2701a22 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.8.3 +2.8.4 diff --git a/play-life-web/src/components/TestConfigSelection.css b/play-life-web/src/components/TestConfigSelection.css index 2b9fcb5..86405f8 100644 --- a/play-life-web/src/components/TestConfigSelection.css +++ b/play-life-web/src/components/TestConfigSelection.css @@ -317,7 +317,7 @@ .add-dictionary-button { background: transparent; - border: 2px dashed #2c3e50; + border: 2px dashed white; border-radius: 12px; padding: 1.5rem 1rem; transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s; @@ -332,16 +332,16 @@ .add-dictionary-button:hover { transform: translateY(-2px); - box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2); - background-color: rgba(44, 62, 80, 0.05); - border-color: #1a252f; + box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2); + background-color: rgba(255, 255, 255, 0.05); + border-color: white; } .add-dictionary-button .add-config-icon { - color: #000000; + color: white; } .add-dictionary-button .add-config-text { - color: #000000; + color: white; }