File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
x-pack/legacy/plugins/siem/public/components
page/add_filter_to_global_search_bar Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff 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` ;
Original file line number Diff line number Diff line change @@ -61,13 +61,22 @@ PanelProviders.displayName = 'PanelProviders';
6161const 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
6674PanelProvidersGroupContainer . displayName = 'PanelProvidersGroupContainer' ;
6775
6876/** A row of data providers in the timeline drop zone */
6977const 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
You can’t perform that action at this time.
0 commit comments