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",
"version": "3.9.0",
"version": "3.9.1",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -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 {

View File

@@ -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);
}