Skip to content

Commit d51e3de

Browse files
committed
feat(text): strike-through todo items (closes #4269)
1 parent c16eee7 commit d51e3de

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

apps/client/src/stylesheets/style.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2434,6 +2434,15 @@ footer.webview-footer button {
24342434
.admonition.caution::before { content: "\eac7"; }
24352435
.admonition.warning::before { content: "\eac5"; }
24362436

2437+
.ck-content ul.todo-list li span.todo-list__label__description {
2438+
transition: opacity 200ms ease;
2439+
}
2440+
2441+
.ck-content ul.todo-list li:has(input[type="checkbox"]:checked) span.todo-list__label__description {
2442+
text-decoration: line-through;
2443+
opacity: 0.6;
2444+
}
2445+
24372446
.chat-options-container {
24382447
display: flex;
24392448
margin: 5px 0;

0 commit comments

Comments
 (0)