Skip to content

Commit

Permalink
Added styles to make combobox list items wider for alerting flyout (#…
Browse files Browse the repository at this point in the history
…61894)

* Added styles to make combobox list items wider for alerting flyout

* Fixed width for OF expression popover

* Fixed due to comments

* Fixed due to comments

* Resized
  • Loading branch information
YulNaumenko authored Mar 31, 2020
1 parent 12c8ff7 commit 81e1dca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.actOf__aggFieldContainer {
width: $euiSize * 29;
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import {
import { builtInAggregationTypes } from '../constants';
import { AggregationType } from '../types';
import { ClosablePopoverTitle } from './components';
import './of.scss';

interface OfExpressionProps {
aggType: string;
Expand Down Expand Up @@ -108,7 +109,7 @@ export const OfExpression = ({
/>
</ClosablePopoverTitle>
<EuiFlexGroup>
<EuiFlexItem grow={false} className="watcherThresholdAlertAggFieldContainer">
<EuiFlexItem grow={false} className="actOf__aggFieldContainer">
<EuiFormRow
fullWidth
isInvalid={errors.aggField.length > 0 && aggField !== undefined}
Expand Down

0 comments on commit 81e1dca

Please sign in to comment.