v3.5.3: Убрана группировка бесконечных задач, добавлена иконка бесконечности, улучшен UI модального окна переноса
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 35s

This commit is contained in:
poignatov
2026-01-09 14:12:06 +03:00
parent 1097a84d06
commit 97c031eda4
5 changed files with 163 additions and 91 deletions

View File

@@ -94,6 +94,8 @@
display: flex;
align-items: center;
gap: 0.5rem;
min-width: 0;
overflow: hidden;
}
.task-name-wrapper {
@@ -101,6 +103,8 @@
display: flex;
flex-direction: column;
gap: 0.125rem;
min-width: 0;
overflow: hidden;
}
.task-name {
@@ -110,6 +114,11 @@
display: flex;
align-items: center;
gap: 0.25rem;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
min-width: 0;
flex: 1;
}
.task-next-show-date {
@@ -124,11 +133,23 @@
font-weight: 400;
}
.task-badge-bar {
display: inline-flex;
align-items: center;
gap: 0.25rem;
margin-left: 0.25rem;
}
.task-progression-icon {
color: #9ca3af;
flex-shrink: 0;
}
.task-infinite-icon {
color: #9ca3af;
flex-shrink: 0;
}
.task-actions {
display: flex;
align-items: center;
@@ -181,8 +202,7 @@
}
.task-postpone-modal-header {
padding: 1.5rem;
border-bottom: 1px solid #e5e7eb;
padding: 1rem 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
@@ -217,7 +237,7 @@
}
.task-postpone-modal-content {
padding: 1.5rem;
padding: 0 1.5rem 1.5rem 1.5rem;
}
.task-postpone-quick-buttons {