4.19.0: Добавлены позиции подзадач
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m34s

This commit is contained in:
poignatov
2026-02-04 21:21:07 +03:00
parent 09ab87b6dd
commit a60bfe97dc
7 changed files with 203 additions and 18 deletions

View File

@@ -261,6 +261,46 @@
margin-bottom: 0.75rem;
}
.subtask-position-controls {
display: flex;
flex-direction: column;
gap: 0.25rem;
flex-shrink: 0;
}
.move-subtask-button {
padding: 0.25rem;
background: #f3f4f6;
color: #6b7280;
border: 1px solid #d1d5db;
border-radius: 0.25rem;
cursor: pointer;
transition: all 0.2s;
display: flex;
align-items: center;
justify-content: center;
width: 2rem;
height: 1.75rem;
flex-shrink: 0;
}
.move-subtask-button:hover:not(:disabled) {
background: #e5e7eb;
border-color: #9ca3af;
color: #374151;
}
.move-subtask-button:disabled {
opacity: 0.4;
cursor: not-allowed;
background: #f9fafb;
}
.move-subtask-button:focus {
outline: none;
box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}
.subtask-name-input {
flex: 1;
margin-bottom: 0;