Created
February 28, 2024 02:17
-
-
Save atomicstack/883366ff8d8a74ac1aba61ebc42c0b4a to your computer and use it in GitHub Desktop.
Obsidian CSS snippet: Disable strikethrough in marked checkboxes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.markdown-source-view.mod-cm6 .HyperMD-task-line[data-task]:not([data-task=" "]) { | |
text-decoration:none; | |
color: var(--text-normal); | |
} | |
.markdown-preview-view ul > li.task-list-item.is-checked { | |
text-decoration:none; | |
color:var(--text-normal); | |
} | |
.markdown-preview-view ol > li.task-list-item.is-checked { | |
text-decoration:none; | |
color:var(--text-normal); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment