From c6624085f099a6364b020f94b90749bd10a25b42 Mon Sep 17 00:00:00 2001 From: Max Richter Date: Thu, 30 Jan 2025 14:54:57 +0100 Subject: [PATCH] fix: strike through links in tasks (#1225) --- web/styles/editor.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/styles/editor.scss b/web/styles/editor.scss index 41dfb84af..857e6ca82 100644 --- a/web/styles/editor.scss +++ b/web/styles/editor.scss @@ -218,7 +218,8 @@ /* U+2022 BULLET */ } - .cm-task-checked { + .cm-task-checked, + .sb-line-task:has(.cm-task-checked) .sb-wiki-link-page { text-decoration: line-through !important; }