Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ILM] Adjust alignment of field errors + timeline icon #104084

Merged
merged 9 commits into from
Jul 30, 2021
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { maxAgeUnits } from '../constants';

export const MaxAgeField: FunctionComponent = () => {
return (
<EuiFlexGroup alignItems="flexEnd" gutterSize="s">
<EuiFlexGroup alignItems="flexStart" gutterSize="s">
<EuiFlexItem style={{ maxWidth: 188 }}>
<UseField
path={ROLLOVER_FORM_PATHS.maxAge}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { ROLLOVER_FORM_PATHS } from '../../../../constants';

export const MaxDocumentCountField: FunctionComponent = () => {
return (
<EuiFlexGroup alignItems="flexEnd" gutterSize="s">
<EuiFlexGroup alignItems="flexStart" gutterSize="s">
<EuiFlexItem style={{ maxWidth: 188 }}>
<UseField
path={ROLLOVER_FORM_PATHS.maxDocs}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const i18nTexts = {

export const MaxIndexSizeField: FunctionComponent = () => {
return (
<EuiFlexGroup alignItems="flexEnd" gutterSize="s">
<EuiFlexGroup alignItems="flexStart" gutterSize="s">
<EuiFlexItem style={{ maxWidth: 188 }}>
<UseField
path={ROLLOVER_FORM_PATHS.maxSize}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { maxSizeStoredUnits } from '../constants';

export const MaxPrimaryShardSizeField: FunctionComponent = () => {
return (
<EuiFlexGroup alignItems="flexEnd" gutterSize="s">
<EuiFlexGroup alignItems="flexStart" gutterSize="s">
<EuiFlexItem style={{ maxWidth: 188 }}>
<UseField
path={ROLLOVER_FORM_PATHS.maxPrimaryShardSize}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ $ilmTimelineBarHeight: $euiSizeS;
*/
display: inline-block;
width: 100%;
margin-top: $euiSizeS;

&__phase:first-child {
padding-left: 0;
Expand Down