Skip to content

Commit a5ddbc2

Browse files
committed
Merge remote-tracking branch 'upstream/master' into es-query
2 parents 3cba0a7 + eb0141d commit a5ddbc2

File tree

2 files changed

+12
-3
lines changed
  • x-pack/legacy/plugins/siem/public/components

2 files changed

+12
-3
lines changed

x-pack/legacy/plugins/siem/public/components/page/add_filter_to_global_search_bar/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const AddFilterToGlobalSearchBar = React.memo<OwnProps>(
3333
return (
3434
<WithHoverActions
3535
hoverContent={
36-
<HoverActionsContainer data-test-subj="hover-actions-container">
36+
<HoverActionsContainer data-test-subj="hover-actions-container" paddingSize="none">
3737
<EuiToolTip content={i18n.FILTER_FOR_VALUE}>
3838
<EuiIcon data-test-subj="add-to-filter" type="filter" onClick={addToKql} />
3939
</EuiToolTip>
@@ -51,11 +51,11 @@ export const HoverActionsContainer = styled(EuiPanel)`
5151
align-items: center;
5252
display: flex;
5353
flex-direction: row;
54-
height: 25px;
54+
height: 34px;
5555
justify-content: center;
5656
left: 5px;
5757
position: absolute;
5858
top: -10px;
59-
width: 30px;
59+
width: 34px;
6060
cursor: pointer;
6161
`;

x-pack/legacy/plugins/siem/public/components/timeline/data_providers/providers.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,22 @@ PanelProviders.displayName = 'PanelProviders';
6161
const PanelProvidersGroupContainer = styled(EuiFlexGroup)`
6262
position: relative;
6363
flex-grow: unset;
64+
65+
.euiFlexItem {
66+
flex: 1 0 auto;
67+
}
68+
69+
.euiFlexItem--flexGrowZero {
70+
flex: 0 0 auto;
71+
}
6472
`;
6573

6674
PanelProvidersGroupContainer.displayName = 'PanelProvidersGroupContainer';
6775

6876
/** A row of data providers in the timeline drop zone */
6977
const PanelProviderGroupContainer = styled(EuiFlexGroup)`
7078
height: ${ROW_OF_DATA_PROVIDERS_HEIGHT}px;
79+
min-height: ${ROW_OF_DATA_PROVIDERS_HEIGHT}px;
7180
margin: 5px 0px;
7281
`;
7382

0 commit comments

Comments
 (0)