Skip to content

Commit

Permalink
[design feedback] Regular tooltip delay
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen committed Mar 14, 2024
1 parent 8598331 commit 24ee14b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src-docs/src/views/button/button_group_tooltips.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export default () => {
toolTipContent: 'This is another custom tooltip',
toolTipProps: {
title: 'My custom title',
delay: 'regular',
position: 'right',
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export const WithTooltips: Story = {
toolTipContent: 'Custom tooltip position and delay',
toolTipProps: {
position: 'right',
delay: 'regular',
delay: 'long',
title: 'Hello world',
},
// Consumers could also opt to hide titles if preferred
Expand Down
1 change: 0 additions & 1 deletion src/components/button/button_group/button_group_button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,6 @@ const EuiButtonGroupButtonWithToolTip: FunctionComponent<
return toolTipContent ? (
<EuiToolTip
content={toolTipContent}
delay="long"
position="top"
{...toolTipProps}
anchorProps={{
Expand Down

0 comments on commit 24ee14b

Please sign in to comment.