chore: release v0.20.24

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ulas Kalayci
2026-04-20 10:05:12 +02:00
parent aae895d704
commit e48d249fbe
10 changed files with 606 additions and 115 deletions
+20
View File
@@ -302,6 +302,26 @@
box-shadow: var(--shadow-lg);
}
/* #11 Swipe-Affordanz: subtiler grüner Streifen am rechten Rand (nur Touch-Geräte) */
@media (pointer: coarse) {
.swipe-row::after {
content: '';
position: absolute;
top: 0;
right: 0;
width: 4px;
height: 100%;
background: linear-gradient(to left, color-mix(in srgb, var(--color-success) 60%, transparent), transparent);
border-radius: 0 var(--radius-md) var(--radius-md) 0;
pointer-events: none;
transition: opacity var(--transition-fast);
}
.swipe-row--swiping::after {
opacity: 0;
}
}
/* --------------------------------------------------------
* Task-Card
* -------------------------------------------------------- */