Skip to content

Commit d45107e

Browse files
committed
fixing custom link popover size and hiding scroll
1 parent d662cb5 commit d45107e

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

x-pack/legacy/plugins/apm/public/components/shared/TransactionActionMenu/CustomLink/CustomLinkPopover.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import { ManageCustomLink } from './ManageCustomLink';
1919
import { px } from '../../../../style/variables';
2020

2121
const ScrollableContainer = styled.div`
22+
-ms-overflow-style: none;
2223
max-height: ${px(535)};
2324
overflow: scroll;
2425
`;

x-pack/legacy/plugins/apm/public/components/shared/TransactionActionMenu/TransactionActionMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export const TransactionActionMenu: FunctionComponent<Props> = ({
124124
<ActionMenuButton onClick={() => setIsActionPopoverOpen(true)} />
125125
}
126126
>
127-
<div style={{ maxHeight: px(600) }}>
127+
<div style={{ maxHeight: px(600), width: px(335) }}>
128128
{isCustomLinksPopoverOpen ? (
129129
<CustomLinkPopover
130130
customLinks={customLinks.slice(3, customLinks.length)}

0 commit comments

Comments
 (0)