File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -530,12 +530,14 @@ $fallbacks: m3-chip.get-tokens();
530
530
background-color : token-utils .slot (chip-trailing-action-state-layer-color , $fallbacks );
531
531
}
532
532
533
+ // The parent chips will show hover state as well so need stronger hover styling here
533
534
& :hover ::after {
534
- opacity : token-utils .slot (chip-trailing-action-hover-state-layer-opacity , $fallbacks );
535
+ opacity : calc ( token-utils .slot (chip-trailing-action-hover-state-layer-opacity , $fallbacks ) * 2 );
535
536
}
536
537
538
+ // The parent chips will show focus state as well so need stronger focus styling here
537
539
& :focus ::after {
538
- opacity : token-utils .slot (chip-trailing-action-focus-state-layer-opacity , $fallbacks );
540
+ opacity : calc ( token-utils .slot (chip-trailing-action-focus-state-layer-opacity , $fallbacks ) * 2 );
539
541
}
540
542
}
541
543
You can’t perform that action at this time.
0 commit comments