fix(BOOK-437): Fixed icon color of the check icon in lists

Approved-by: Bianca Widstam
Approved-by: Matilda Landström
This commit is contained in:
Erik Tiekstra
2025-11-26 07:40:28 +00:00
parent b41aab56a6
commit 250b1f2eac

View File

@@ -81,27 +81,25 @@
margin-left: 0;
display: flex;
gap: var(--Space-x1);
}
.heart > .li::before,
.li:has(.heart)::before,
.check > .li::before,
.li:has(.check)::before {
content: '';
position: relative;
top: 3px;
width: 16px;
height: 16px;
display: inline-flex;
flex-shrink: 0;
background-color: var(--Icon-Accent);
mask-size: contain;
mask-repeat: no-repeat;
&::before {
content: '';
position: relative;
top: 3px;
width: 16px;
height: 16px;
display: inline-flex;
flex-shrink: 0;
background-color: var(--Icon-Accent);
mask-size: contain;
mask-repeat: no-repeat;
}
}
.check > .li::before,
.li:has(.check)::before {
mask-image: url('/_static/icons/check_circle.svg');
background-color: var(--Icon-Interactive-Default);
}
.heart > .li::before,