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; }