From f876080927bd418d253f22ac36ab3ac427bab47a Mon Sep 17 00:00:00 2001 From: Andrey Dolgachev Date: Tue, 12 Aug 2025 10:29:19 +0900 Subject: [PATCH] fix(chips): remove visible overflow for labels --- src/material/chips/chip.scss | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/material/chips/chip.scss b/src/material/chips/chip.scss index 27b9640c9dd1..170c5e57de2b 100644 --- a/src/material/chips/chip.scss +++ b/src/material/chips/chip.scss @@ -547,15 +547,6 @@ $fallbacks: m3-chip.get-tokens(); .mat-mdc-standard-chip { -webkit-tap-highlight-color: transparent; - // MDC sets `overflow: hidden` on these elements in order to truncate the text. This is - // unnecessary since our chips don't truncate their text and it makes it difficult to style - // the strong focus indicators so we need to override it. - .mdc-evolution-chip__cell--primary, - .mdc-evolution-chip__action--primary, - .mat-mdc-chip-action-label { - overflow: visible; - } - // MDC sizes and positions this element using `width`, `height` and `padding`. // This usually works, but it's common for apps to add `box-sizing: border-box` // to all elements on the page which can cause the graphic to be clipped.