v0.1.6: use text-decoration shorthand for Obsidian 1.9.12 compatibility

Obsidian Community scorecard flagged text-decoration-line /
text-decoration-color longhand properties as only partially supported
by Obsidian 1.9.12. Consolidated into the shorthand form which is
universally supported.

Co-authored-by: Isaac
This commit is contained in:
Art Malanok 2026-05-28 10:26:32 -07:00
parent 2780e7bb55
commit dfe2f2c383
4 changed files with 5 additions and 5 deletions

View file

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

View file

@ -1,6 +1,6 @@
{
"name": "minimal-task-board",
"version": "0.1.5",
"version": "0.1.6",
"private": true,
"scripts": {
"build": "node esbuild.config.mjs",

View file

@ -306,8 +306,7 @@
COMPLETION ANIMATION
============================================================ */
.ot-task-row.completing .ot-action {
text-decoration-line: line-through;
text-decoration-color: var(--text-muted);
text-decoration: line-through var(--text-muted);
}
.ot-task-row.completing {

View file

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