Skip to content

Commit

Permalink
update action test for coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfranco committed Jun 4, 2024
1 parent dab5f80 commit 04939ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ describe("calcite-action", () => {
targetProp: "--calcite-icon-color",
},
"--calcite-action-indicator-color": {
shadowSelector: `.${CSS.actionIndicator}`,
targetProp: "color",
shadowSelector: `.${CSS.actionIndicator}::after`,
targetProp: "background-color",
},
} as const;
themed(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@

.action-indicator {
position: relative;
color: var(--calcite-action-indicator-color, var(--calcite-color-brand));
block-size: var(--calcite-internal-action-line-height);
inline-size: var(--calcite-internal-action-line-height);

Expand All @@ -95,7 +94,7 @@
@apply rounded-full;
inset-block-end: -0.275rem;
inset-inline-end: -0.275rem;
background-color: currentColor;
background-color: var(--calcite-action-indicator-color, var(--calcite-color-brand));
}
}

Expand Down

0 comments on commit 04939ad

Please sign in to comment.