From 0c5f7fa9d95bfb9c028bc1328a5648ab0a7bb08e Mon Sep 17 00:00:00 2001 From: poignatov Date: Tue, 3 Feb 2026 16:45:35 +0300 Subject: [PATCH] =?UTF-8?q?4.10.2:=20=D0=A1=D0=B8=D0=BD=D1=85=D1=80=D0=BE?= =?UTF-8?q?=D0=BD=D0=B8=D0=B7=D0=B0=D1=86=D0=B8=D1=8F=20=D1=82=D0=B5=D0=BD?= =?UTF-8?q?=D0=B5=D0=B9=20=D0=BA=D0=BD=D0=BE=D0=BF=D0=BE=D0=BA=20=D0=B4?= =?UTF-8?q?=D0=BE=D1=81=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VERSION | 2 +- play-life-web/package.json | 2 +- play-life-web/src/components/BoardSelector.css | 15 ++++++++------- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/VERSION b/VERSION index ad96464..0216ba3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.10.1 +4.10.2 diff --git a/play-life-web/package.json b/play-life-web/package.json index 95601b5..3cfda4c 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "4.10.1", + "version": "4.10.2", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/components/BoardSelector.css b/play-life-web/src/components/BoardSelector.css index d563de7..db7c7b0 100644 --- a/play-life-web/src/components/BoardSelector.css +++ b/play-life-web/src/components/BoardSelector.css @@ -28,18 +28,18 @@ height: 52px; padding: 0 20px; background: white; - border: none; + border: 1px solid #e5e7eb; border-radius: 26px; font-size: 17px; font-weight: 500; color: #1f2937; cursor: pointer; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06); } .board-pill:hover:not(:disabled) { - box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15), 0 2px 4px rgba(0, 0, 0, 0.08); + border-color: #6366f1; + box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); transform: translateY(-1px); } @@ -48,7 +48,8 @@ } .board-pill.open { - box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2), 0 2px 4px rgba(0, 0, 0, 0.08); + border-color: #6366f1; + box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); } .board-pill:disabled { @@ -88,19 +89,19 @@ height: 52px; padding: 0; background: white; - border: none; + border: 1px solid #e5e7eb; border-radius: 50%; cursor: pointer; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); color: #6b7280; flex-shrink: 0; - box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06); } .board-action-btn:hover { background: #f9fafb; color: #374151; - box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); + border-color: #6366f1; + box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1); transform: translateY(-1px); }