From 6caed05c9fd35b43a5a3dd7c78c499110f25acca Mon Sep 17 00:00:00 2001 From: poignatov Date: Wed, 4 Mar 2026 18:22:58 +0300 Subject: [PATCH] =?UTF-8?q?5.11.1:=20=D0=A1=D1=82=D0=B8=D0=BB=D0=B8=20Task?= =?UTF-8?q?List=20=D0=B8=20=D0=BA=D0=B0=D1=80=D1=82=D0=BE=D1=87=D0=B5?= =?UTF-8?q?=D0=BA=20Wishlist?= 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/TaskList.css | 4 ++-- play-life-web/src/components/Wishlist.css | 12 ++++++++++-- play-life-web/src/components/Wishlist.jsx | 18 ++++++++++-------- 5 files changed, 24 insertions(+), 14 deletions(-) diff --git a/VERSION b/VERSION index c68d476..32447ce 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.11.0 +5.11.1 diff --git a/play-life-web/package.json b/play-life-web/package.json index 4c613ed..ce5f72a 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "5.11.0", + "version": "5.11.1", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/components/TaskList.css b/play-life-web/src/components/TaskList.css index 4398224..a1187bc 100644 --- a/play-life-web/src/components/TaskList.css +++ b/play-life-web/src/components/TaskList.css @@ -285,8 +285,8 @@ .task-progression-value { font-size: 0.8rem; - font-weight: 500; - color: #374151; + font-weight: 700; + color: #9ca3af; min-width: 1rem; text-align: center; } diff --git a/play-life-web/src/components/Wishlist.css b/play-life-web/src/components/Wishlist.css index c6e585c..8681c4a 100644 --- a/play-life-web/src/components/Wishlist.css +++ b/play-life-web/src/components/Wishlist.css @@ -184,7 +184,15 @@ transform: translateY(-2px); } -.wishlist-card.faded { +.wishlist-card-content { + position: relative; + display: flex; + flex-direction: column; + flex: 1; + min-height: 0; +} + +.wishlist-card.faded .wishlist-card-content { opacity: 0.45; } @@ -195,7 +203,7 @@ border-radius: 50%; width: 28px; height: 28px; - z-index: 10; + z-index: 20; padding: 0; display: flex; align-items: center; diff --git a/play-life-web/src/components/Wishlist.jsx b/play-life-web/src/components/Wishlist.jsx index 40d29cf..6c9ac7b 100644 --- a/play-life-web/src/components/Wishlist.jsx +++ b/play-life-web/src/components/Wishlist.jsx @@ -630,15 +630,16 @@ function Wishlist({ onNavigate, refreshTrigger = 0, isActive = false, initialBoa )} )} - +
+ -
+
{item.image_url ? ( {item.name} ) : ( @@ -664,6 +665,7 @@ function Wishlist({ onNavigate, refreshTrigger = 0, isActive = false, initialBoa } return null })()} +
) }