mirror of
https://github.com/selectstarfromusers/obsidian-task-manager.git
synced 2026-07-22 06:05:56 +00:00
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:
parent
2780e7bb55
commit
dfe2f2c383
4 changed files with 5 additions and 5 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "minimal-task-board",
|
||||
"version": "0.1.5",
|
||||
"version": "0.1.6",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build": "node esbuild.config.mjs",
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue