6.3.10: Фикс зоны клика кнопок прогрессии
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m2s
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m2s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "play-life-web",
|
"name": "play-life-web",
|
||||||
"version": "6.3.9",
|
"version": "6.3.10",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@@ -204,46 +204,56 @@
|
|||||||
top: 0;
|
top: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: stretch;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.progression-control-btn {
|
.progression-control-btn {
|
||||||
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
width: 2rem;
|
width: 2.375rem;
|
||||||
height: 2rem;
|
|
||||||
border: none;
|
border: none;
|
||||||
background: #f3f4f6;
|
background: transparent;
|
||||||
font-size: 1.125rem;
|
font-size: 1.125rem;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
color: #6b7280;
|
color: #6b7280;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: background 0.2s, color 0.2s;
|
transition: color 0.2s;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progression-control-btn::after {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
width: 2rem;
|
||||||
|
height: 2rem;
|
||||||
|
background: #f3f4f6;
|
||||||
|
transition: background 0.2s;
|
||||||
|
z-index: -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.progression-control-btn:hover {
|
.progression-control-btn:hover {
|
||||||
background: #e5e7eb;
|
|
||||||
color: #374151;
|
color: #374151;
|
||||||
}
|
}
|
||||||
|
|
||||||
.progression-control-btn:active {
|
.progression-control-btn:hover::after {
|
||||||
|
background: #e5e7eb;
|
||||||
|
}
|
||||||
|
|
||||||
|
.progression-control-btn:active::after {
|
||||||
background: #d1d5db;
|
background: #d1d5db;
|
||||||
}
|
}
|
||||||
|
|
||||||
.progression-control-minus {
|
.progression-control-minus::after {
|
||||||
border-right: 1px solid #eeeff1;
|
|
||||||
border-radius: 9999px 0 0 9999px;
|
border-radius: 9999px 0 0 9999px;
|
||||||
padding-left: 0.375rem;
|
right: 0;
|
||||||
margin-left: 0.375rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.progression-control-plus {
|
.progression-control-plus::after {
|
||||||
border-left: 1px solid #eeeff1;
|
|
||||||
border-radius: 0 9999px 9999px 0;
|
border-radius: 0 9999px 9999px 0;
|
||||||
padding-right: 0.375rem;
|
left: 0;
|
||||||
margin-right: 0.375rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.task-detail-divider {
|
.task-detail-divider {
|
||||||
|
|||||||
Reference in New Issue
Block a user