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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user