From e71c45077de6f77cac052f2a377e7b02c3d0c35a Mon Sep 17 00:00:00 2001 From: Cyril Date: Tue, 30 Sep 2025 10:04:03 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8(frontend)=20checked=20checkboxes:=20r?= =?UTF-8?q?emoving=20strikethrough?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit removing strikethrough Signed-off-by: Cyril --- CHANGELOG.md | 1 + .../apps/impress/src/features/docs/doc-editor/styles.tsx | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 104cf048..6dc38d58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ and this project adheres to - ♿ remove redundant aria-label on hidden icons and update tests #1432 - ♿ improve semantic structure and aria roles of leftpanel #1431 - ♿ add default background to left panel for better accessibility #1423 + - ♿ restyle checked checkboxes: removing strikethrough #1439 - ♿ add h1 for SR on 40X pages and remove alt texts #1438 ### Fixed diff --git a/src/frontend/apps/impress/src/features/docs/doc-editor/styles.tsx b/src/frontend/apps/impress/src/features/docs/doc-editor/styles.tsx index ae153c35..786e9a0d 100644 --- a/src/frontend/apps/impress/src/features/docs/doc-editor/styles.tsx +++ b/src/frontend/apps/impress/src/features/docs/doc-editor/styles.tsx @@ -91,6 +91,11 @@ export const cssEditor = (readonly: boolean) => css` border-radius: var(--c--theme--spacings--3xs); } + .bn-block-content[data-content-type='checkListItem'][data-checked='true'] + .bn-inline-content { + text-decoration: none; + } + h1 { font-size: 1.875rem; }