Skip to content

Commit e246dc6

Browse files
committed
fix
1 parent e64819e commit e246dc6

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

e2e/components/ActionList.test.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,14 @@ const stories = [
128128
title: 'Large Item',
129129
id: 'components-actionlist-features--large-item',
130130
},
131+
{
132+
title: 'Trailing count',
133+
id: 'components-actionlist-features--with-trailing-count',
134+
},
135+
{
136+
title: 'Keyboard shortcuts',
137+
id: 'components-actionlist-features--with-keyboard-shortcuts',
138+
},
131139
] as const
132140

133141
test.describe('ActionList', () => {

packages/react/src/ActionList/ActionList.module.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,11 @@
179179
.ItemLabel {
180180
color: var(--control-danger-fgColor-hover);
181181
}
182+
183+
& [data-kbd-chord] {
184+
background-color: var(--bgColor-default);
185+
transition: none;
186+
}
182187
}
183188
}
184189

@@ -191,6 +196,11 @@
191196
.ItemLabel {
192197
color: var(--control-danger-fgColor-hover);
193198
}
199+
200+
& [data-kbd-chord] {
201+
background-color: var(--bgColor-default);
202+
transition: none;
203+
}
194204
}
195205
}
196206

0 commit comments

Comments
 (0)