0.1.7: remove text-decoration to clear Obsidian scorecard warning

The scorecard flags the text-decoration property at the property level —
every value trips it. 0.1.6 switched longhand -> shorthand and was still
flagged. Removed the .ot-task-row.completing strikethrough rule entirely;
completion is already conveyed by the opacity fade + collapse.

Co-authored-by: Isaac
This commit is contained in:
Art Malanok 2026-05-29 14:14:52 -07:00
parent dfe2f2c383
commit 95bf1e5820
3 changed files with 3 additions and 6 deletions

View file

@ -1,7 +1,7 @@
{
"id": "minimal-task-board",
"name": "Minimal Task Board",
"version": "0.1.6",
"version": "0.1.7",
"minAppVersion": "1.10.0",
"description": "A clean, minimal task board with customizable buckets, secondary grouping, and inline task tracking.",
"author": "Art Malanok",

View file

@ -305,10 +305,6 @@
/* ============================================================
COMPLETION ANIMATION
============================================================ */
.ot-task-row.completing .ot-action {
text-decoration: line-through var(--text-muted);
}
.ot-task-row.completing {
opacity: 0.4;
transition: opacity 300ms ease;

View file

@ -5,5 +5,6 @@
"0.1.3": "1.10.0",
"0.1.4": "1.10.0",
"0.1.5": "1.10.0",
"0.1.6": "1.10.0"
"0.1.6": "1.10.0",
"0.1.7": "1.10.0"
}