From 9389e26b68705e82c1cde5469ab7777790db5477 Mon Sep 17 00:00:00 2001 From: Material Web Team Date: Tue, 29 Aug 2023 17:08:19 -0700 Subject: [PATCH] fix(chips): apply cursor styling PiperOrigin-RevId: 561179456 --- chips/internal/_shared.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/chips/internal/_shared.scss b/chips/internal/_shared.scss index 32d418eaae..0285d2578d 100644 --- a/chips/internal/_shared.scss +++ b/chips/internal/_shared.scss @@ -20,6 +20,7 @@ border-end-end-radius: var(--_container-shape-end-end); display: inline-flex; height: var(--_container-height); + cursor: pointer; @include ripple.theme( ( @@ -204,4 +205,9 @@ opacity: 1; } } + + a, + button:not(:disabled) { + cursor: inherit; + } }