From 0aa5dca2ed58bb283c605bc6d355d79cede01689 Mon Sep 17 00:00:00 2001 From: Nachum Barcohen Date: Wed, 17 Jun 2026 22:34:25 +0300 Subject: [PATCH] fix: don't render list bullet on CKEditor task lists The content list-bullet rule (themes/default/scss/app.scss) draws a custom `::before` bullet on `ul` and excludes `.contains-task-list` (markdown task lists, where the checkbox is the marker). The CKEditor "Visual" editor emits task lists with class `.todo-list`, which was not excluded, so the bullet rendered in the task-list checkbox - in both the editor and the saved/rendered output. Exclude `.todo-list` as well. --- client/themes/default/scss/app.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/themes/default/scss/app.scss b/client/themes/default/scss/app.scss index 88380963..55ae78dc 100644 --- a/client/themes/default/scss/app.scss +++ b/client/themes/default/scss/app.scss @@ -663,7 +663,7 @@ } } - ul:not(.tabset-tabs):not(.contains-task-list) { + ul:not(.tabset-tabs):not(.contains-task-list):not(.todo-list) { list-style: none; > li::before { position: absolute;