From f99376b1a8d297c80a9f65508dd71bff5f3466e3 Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Fri, 17 Oct 2025 08:55:46 -0400 Subject: [PATCH] build: fix leaking styles from aria Fixes that some styles from the Aria classes were leaking into the non-Aria components. --- src/dev-app/common-classes.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dev-app/common-classes.css b/src/dev-app/common-classes.css index a4a7de05e811..f955052ed7e9 100644 --- a/src/dev-app/common-classes.css +++ b/src/dev-app/common-classes.css @@ -60,8 +60,8 @@ border-radius: var(--mat-sys-corner-extra-small); } -[aria-disabled='true']:focus-within, -[aria-activedescendant]:focus-within { +.example-listbox[aria-disabled='true']:focus-within, +.example-listbox[aria-activedescendant]:focus-within { outline: var(--mat-sys-primary) solid 1px; }