Skip to content

Commit

Permalink
Merge pull request #5028 from bartaz/fix-list-icons
Browse files Browse the repository at this point in the history
Fix regression that caused wrong success icon being used in lists
  • Loading branch information
bartaz committed Mar 14, 2024
2 parents 4e3b67e + 4f652ad commit 2443401
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
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
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 2443401

Please sign in to comment.