From 6e85547a1b3b45f449a191d188983e07afc96480 Mon Sep 17 00:00:00 2001 From: Ashley Ryan Date: Tue, 4 Oct 2022 12:36:32 -0400 Subject: [PATCH] fix(list): make unstyled list markers transparent instead of list-style-type none screen readers can't read list-style-type: none, so change the markers to be transparent instead Fixes VPAT-612 --- projects/angular/src/typography/_lists.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/projects/angular/src/typography/_lists.scss b/projects/angular/src/typography/_lists.scss index 1ad895c078..8ffaa206d7 100644 --- a/projects/angular/src/typography/_lists.scss +++ b/projects/angular/src/typography/_lists.scss @@ -8,7 +8,11 @@ %kill-list-styles { padding-left: 0; margin-left: 0; - list-style: none; + list-style-position: outside; + + li::marker { + color: transparent; + } } ul:not([cds-list]),