Skip to content

Commit f2eb40c

Browse files
committed
fix: remove scale animation from inline task widgets (#1456)
The entrance animation for inline task previews included a scale transformation (0.95→1.0) that replayed whenever widgets were recreated on status change, causing a distracting visual jump. Removed the scale, keeping only the opacity fade.
1 parent 034463e commit f2eb40c

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

docs/releases/unreleased.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ Example:
3838

3939
## Fixed
4040

41+
- (#1456) Fixed inline tasks jumping visually when marked as completed
42+
- Removed scale transformation from the entrance animation to prevent distracting movement on status change
43+
- Thanks to @3zra47 for reporting
44+
4145
- (#1364) Fixed auto-stop time tracking not triggering when completing recurring task instances
4246
- The auto-stop logic now detects when `complete_instances` grows, not just status changes
4347

styles/task-inline-widget.css

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -415,11 +415,9 @@
415415
@keyframes tn-fadeInTaskPreview {
416416
from {
417417
opacity: 0;
418-
transform: scale(0.95);
419418
}
420419
to {
421420
opacity: 1;
422-
transform: scale(1);
423421
}
424422
}
425423

0 commit comments

Comments
 (0)