diff --git a/VERSION b/VERSION index a5c4c76..6bd1074 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.9.0 +3.9.1 diff --git a/play-life-web/package.json b/play-life-web/package.json index 3b9aefe..085b966 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "3.9.0", + "version": "3.9.1", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/components/TestConfigSelection.css b/play-life-web/src/components/TestConfigSelection.css index 1def794..5125210 100644 --- a/play-life-web/src/components/TestConfigSelection.css +++ b/play-life-web/src/components/TestConfigSelection.css @@ -84,21 +84,21 @@ position: relative; } -.card-menu-button { +.config-selection .config-card .card-menu-button { position: absolute; top: 0.5rem; right: 0; - background: rgba(255, 255, 255, 0.2); - border: none; - border-radius: 6px; - width: 40px; - height: 40px; + background: transparent !important; + border: none !important; + border-radius: 6px !important; + width: 40px !important; + height: 40px !important; display: flex; align-items: center; justify-content: center; cursor: pointer; - font-size: 1.75rem; - color: white; + font-size: 1.5rem !important; + color: white !important; font-weight: bold; transition: all 0.2s; z-index: 10; @@ -106,9 +106,9 @@ line-height: 1; } -.card-menu-button:hover { - background: rgba(255, 255, 255, 0.3); - opacity: 1; +.config-selection .config-card .card-menu-button:hover { + background: transparent !important; + opacity: 0.7; transform: scale(1.1); } @@ -273,13 +273,31 @@ position: relative; } -.dictionary-card .card-menu-button { - background: transparent; - color: #2c3e50; +.config-selection .dictionary-card .card-menu-button { + position: absolute; + top: 0.5rem; + right: 0; + background: transparent !important; + border: none !important; + border-radius: 6px !important; + width: 40px !important; + height: 40px !important; + display: flex; + align-items: center; + justify-content: center; + cursor: pointer; + font-size: 1.5rem !important; + color: #2c3e50 !important; + font-weight: bold; + transition: all 0.2s; + z-index: 10; + padding: 0; + line-height: 1; } -.dictionary-card .card-menu-button:hover { +.config-selection .dictionary-card .card-menu-button:hover { opacity: 0.7; + transform: scale(1.1); } .dictionary-card:hover { diff --git a/play-life-web/src/components/Wishlist.css b/play-life-web/src/components/Wishlist.css index 357e2bc..fdd8c92 100644 --- a/play-life-web/src/components/Wishlist.css +++ b/play-life-web/src/components/Wishlist.css @@ -36,7 +36,7 @@ color: #2c3e50; } -.completed-toggle { +.wishlist .completed-toggle { background: none; border: none; padding: 0; @@ -51,11 +51,11 @@ width: 100%; } -.completed-toggle:hover { +.wishlist .completed-toggle:hover { color: #3498db; } -.completed-toggle-icon { +.wishlist .completed-toggle-icon { font-size: 0.75rem; } @@ -95,12 +95,12 @@ opacity: 0.45; } -.card-menu-button { +.wishlist .card-menu-button { position: absolute; top: 0.25rem; right: 0.25rem; - background: rgba(255, 255, 255, 0.7) !important; - border: none !important; + background: rgba(255, 255, 255, 0.7); + border: none; border-radius: 50%; width: 28px; height: 28px; @@ -116,8 +116,8 @@ transition: all 0.2s; } -.card-menu-button:hover { - background: rgba(255, 255, 255, 0.9) !important; +.wishlist .card-menu-button:hover { + background: rgba(255, 255, 255, 0.9); color: #333333; transform: scale(1.1); }