Merged in fix/book-incorrect-hover-color-chip-button (pull request #3323)

updated to correcly displayed hover color on chip buttons

* updated to correcly displayed hover color on chip buttons


Approved-by: Bianca Widstam
Approved-by: Erik Tiekstra
This commit is contained in:
Matilda Haneling
2025-12-12 11:19:16 +00:00
parent 0c93a7be7c
commit 92391fdbd7

View File

@@ -20,10 +20,20 @@
.Outlined {
border: 1px solid var(--Border-Strong);
@media (hover: hover) {
&:not([data-disabled]) {
&:hover,
&.hovered {
background:
linear-gradient(
0deg,
var(--Surface-Primary-Hover) 0%,
var(--Surface-Primary-Hover) 100%
),
var(--Component-Button-Inverted-Fill-Default);
}
}
}
.Outlined:hover {
background-color: var(--Surface-Primary-Hover);
}
.Outlined:active {