Skip to content

Commit 30f9691

Browse files
committed
Change the color
1 parent e54b0af commit 30f9691

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

src/ActionList/Item.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export const Item = React.forwardRef<HTMLLIElement, ActionListItemProps>(
125125
':hover:not([aria-disabled])': {
126126
backgroundColor: `actionListItem.${variant}.hoverBg`,
127127
color: getVariantStyles(variant, disabled).hoverColor,
128-
boxShadow: `inset 0 0 0 max(1px, 0.0625rem) ${theme?.colors.border.muted}`,
128+
boxShadow: `inset 0 0 0 max(1px, 0.0625rem) ${theme?.colors.actionListItem.default.activeBorder}`,
129129
},
130130
'&:focus-visible, > a:focus-visible': {
131131
outline: 'none',

src/NavList/__snapshots__/NavList.test.tsx.snap

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ exports[`NavList renders a simple list 1`] = `
248248
.c2:hover:not([aria-disabled]) {
249249
background-color: rgba(208,215,222,0.32);
250250
color: #1F2328;
251-
box-shadow: inset 0 0 0 max(1px,0.0625rem) hsla(210,18%,87%,1);
251+
box-shadow: inset 0 0 0 max(1px,0.0625rem) rgba(0,0,0,0);
252252
}
253253
254254
.c2:focus-visible,
@@ -274,7 +274,7 @@ exports[`NavList renders a simple list 1`] = `
274274
.c6:hover:not([aria-disabled]) {
275275
background-color: rgba(208,215,222,0.32);
276276
color: #1F2328;
277-
box-shadow: inset 0 0 0 max(1px,0.0625rem) hsla(210,18%,87%,1);
277+
box-shadow: inset 0 0 0 max(1px,0.0625rem) rgba(0,0,0,0);
278278
}
279279
280280
.c6:focus-visible,
@@ -660,7 +660,7 @@ exports[`NavList renders with groups 1`] = `
660660
.c6:hover:not([aria-disabled]) {
661661
background-color: rgba(208,215,222,0.32);
662662
color: #1F2328;
663-
box-shadow: inset 0 0 0 max(1px,0.0625rem) hsla(210,18%,87%,1);
663+
box-shadow: inset 0 0 0 max(1px,0.0625rem) rgba(0,0,0,0);
664664
}
665665
666666
.c6:focus-visible,
@@ -686,7 +686,7 @@ exports[`NavList renders with groups 1`] = `
686686
.c10:hover:not([aria-disabled]) {
687687
background-color: rgba(208,215,222,0.32);
688688
color: #1F2328;
689-
box-shadow: inset 0 0 0 max(1px,0.0625rem) hsla(210,18%,87%,1);
689+
box-shadow: inset 0 0 0 max(1px,0.0625rem) rgba(0,0,0,0);
690690
}
691691
692692
.c10:focus-visible,
@@ -1149,7 +1149,7 @@ exports[`NavList.Item with NavList.SubNav does not have active styles if SubNav
11491149
.c10:hover:not([aria-disabled]) {
11501150
background-color: rgba(208,215,222,0.32);
11511151
color: #1F2328;
1152-
box-shadow: inset 0 0 0 max(1px,0.0625rem) hsla(210,18%,87%,1);
1152+
box-shadow: inset 0 0 0 max(1px,0.0625rem) rgba(0,0,0,0);
11531153
}
11541154
11551155
.c10:focus-visible,
@@ -1175,7 +1175,7 @@ exports[`NavList.Item with NavList.SubNav does not have active styles if SubNav
11751175
.c3:hover:not([aria-disabled]) {
11761176
background-color: rgba(208,215,222,0.32);
11771177
color: #1F2328;
1178-
box-shadow: inset 0 0 0 max(1px,0.0625rem) hsla(210,18%,87%,1);
1178+
box-shadow: inset 0 0 0 max(1px,0.0625rem) rgba(0,0,0,0);
11791179
}
11801180
11811181
.c3:focus-visible,
@@ -1633,7 +1633,7 @@ exports[`NavList.Item with NavList.SubNav has active styles if SubNav contains t
16331633
.c10:hover:not([aria-disabled]) {
16341634
background-color: rgba(208,215,222,0.32);
16351635
color: #1F2328;
1636-
box-shadow: inset 0 0 0 max(1px,0.0625rem) hsla(210,18%,87%,1);
1636+
box-shadow: inset 0 0 0 max(1px,0.0625rem) rgba(0,0,0,0);
16371637
}
16381638
16391639
.c10:focus-visible,
@@ -1659,7 +1659,7 @@ exports[`NavList.Item with NavList.SubNav has active styles if SubNav contains t
16591659
.c3:hover:not([aria-disabled]) {
16601660
background-color: rgba(208,215,222,0.32);
16611661
color: #1F2328;
1662-
box-shadow: inset 0 0 0 max(1px,0.0625rem) hsla(210,18%,87%,1);
1662+
box-shadow: inset 0 0 0 max(1px,0.0625rem) rgba(0,0,0,0);
16631663
}
16641664
16651665
.c3:focus-visible,

0 commit comments

Comments
 (0)