improvement: sorts and filters updated for tasks feature.

This commit is contained in:
2026-07-13 13:22:38 +03:30
parent 4e6ed75844
commit 0d073f1ec0
16 changed files with 666 additions and 102 deletions

View File

@@ -309,4 +309,29 @@ select option {
.lucide {
color: var(--color-icon);
stroke: currentColor;
}
@keyframes task-row-complete-exit {
0% {
opacity: 1;
transform: translateX(0);
max-height: 9rem;
}
40% {
opacity: 1;
transform: translateX(0);
background-color: color-mix(in srgb, var(--color-badge-success-bg) 75%, transparent);
}
100% {
opacity: 0;
transform: translateX(0.75rem);
max-height: 0;
overflow: hidden;
}
}
.task-row-complete-exit {
animation: task-row-complete-exit 0.55s ease-in forwards;
pointer-events: none;
overflow: hidden;
}