Skip to content

Commit

Permalink
Fix regression that caused wrong success icon being used in lists
Browse files Browse the repository at this point in the history
and switch to themed icons while at it
  • Loading branch information
bartaz committed Mar 14, 2024
1 parent 4e3b67e commit 4f652ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scss/_base_icon-definitions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@
}

@mixin vf-icon-success-grey($color) {
background-image: vf-icon-success-url($color);
background-image: vf-icon-success-grey-url($color);
}

@mixin vf-icon-success-grey-themed {
Expand Down
4 changes: 2 additions & 2 deletions scss/_patterns_lists.scss
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ $list-step-bullet-margin: $sph--x-large;

&::before {
@extend %vf-list-item-state-base;
@include vf-icon-success-grey($color-mid-dark);
@include vf-icon-success-grey-themed;
}
}

Expand All @@ -217,7 +217,7 @@ $list-step-bullet-margin: $sph--x-large;

&::before {
@extend %vf-list-item-state-base;
@include vf-icon-error-grey($color-mid-dark);
@include vf-icon-error-grey-themed;
}
}

Expand Down

0 comments on commit 4f652ad

Please sign in to comment.