fix: исправлены конфликты стилей между экранами - выпадающие заголовки задач, многоточие в тестах и словарях (v3.9.1)
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 48s

This commit is contained in:
poignatov
2026-01-11 21:31:42 +03:00
parent e2059ef555
commit f19ed9cb81
4 changed files with 43 additions and 25 deletions

View File

@@ -1 +1 @@
3.9.0 3.9.1

View File

@@ -1,6 +1,6 @@
{ {
"name": "play-life-web", "name": "play-life-web",
"version": "3.9.0", "version": "3.9.1",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@@ -84,21 +84,21 @@
position: relative; position: relative;
} }
.card-menu-button { .config-selection .config-card .card-menu-button {
position: absolute; position: absolute;
top: 0.5rem; top: 0.5rem;
right: 0; right: 0;
background: rgba(255, 255, 255, 0.2); background: transparent !important;
border: none; border: none !important;
border-radius: 6px; border-radius: 6px !important;
width: 40px; width: 40px !important;
height: 40px; height: 40px !important;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
cursor: pointer; cursor: pointer;
font-size: 1.75rem; font-size: 1.5rem !important;
color: white; color: white !important;
font-weight: bold; font-weight: bold;
transition: all 0.2s; transition: all 0.2s;
z-index: 10; z-index: 10;
@@ -106,9 +106,9 @@
line-height: 1; line-height: 1;
} }
.card-menu-button:hover { .config-selection .config-card .card-menu-button:hover {
background: rgba(255, 255, 255, 0.3); background: transparent !important;
opacity: 1; opacity: 0.7;
transform: scale(1.1); transform: scale(1.1);
} }
@@ -273,13 +273,31 @@
position: relative; position: relative;
} }
.dictionary-card .card-menu-button { .config-selection .dictionary-card .card-menu-button {
background: transparent; position: absolute;
color: #2c3e50; 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; opacity: 0.7;
transform: scale(1.1);
} }
.dictionary-card:hover { .dictionary-card:hover {

View File

@@ -36,7 +36,7 @@
color: #2c3e50; color: #2c3e50;
} }
.completed-toggle { .wishlist .completed-toggle {
background: none; background: none;
border: none; border: none;
padding: 0; padding: 0;
@@ -51,11 +51,11 @@
width: 100%; width: 100%;
} }
.completed-toggle:hover { .wishlist .completed-toggle:hover {
color: #3498db; color: #3498db;
} }
.completed-toggle-icon { .wishlist .completed-toggle-icon {
font-size: 0.75rem; font-size: 0.75rem;
} }
@@ -95,12 +95,12 @@
opacity: 0.45; opacity: 0.45;
} }
.card-menu-button { .wishlist .card-menu-button {
position: absolute; position: absolute;
top: 0.25rem; top: 0.25rem;
right: 0.25rem; right: 0.25rem;
background: rgba(255, 255, 255, 0.7) !important; background: rgba(255, 255, 255, 0.7);
border: none !important; border: none;
border-radius: 50%; border-radius: 50%;
width: 28px; width: 28px;
height: 28px; height: 28px;
@@ -116,8 +116,8 @@
transition: all 0.2s; transition: all 0.2s;
} }
.card-menu-button:hover { .wishlist .card-menu-button:hover {
background: rgba(255, 255, 255, 0.9) !important; background: rgba(255, 255, 255, 0.9);
color: #333333; color: #333333;
transform: scale(1.1); transform: scale(1.1);
} }