Skip to content

Commit

Permalink
Revert "[ML] fix page overflow"
Browse files Browse the repository at this point in the history
This reverts commit 3c86922
  • Loading branch information
darnautov committed May 13, 2020
1 parent 98a8099 commit 074c66b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.ml-time-series-explorer {
width: 100%;
display: inline-block;
color: $euiColorDarkShade;

.no-results-container {
Expand Down Expand Up @@ -29,6 +31,8 @@
}

.results-container {
padding: $euiSize;

.panel-title {
font-size: $euiFontSizeM;
font-weight: 400;
Expand All @@ -42,6 +46,8 @@
}

.series-controls {
padding: $euiSize $euiSize 0px $euiSize;

div.entity-controls {
display: inline-block;
padding-left: $euiSize;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1180,8 +1180,6 @@ export class TimeSeriesExplorer extends React.Component {
</EuiFlexGroup>
</div>

<EuiSpacer size="m" />

{fullRefresh && loading === true && (
<LoadingIndicator
label={i18n.translate('xpack.ml.timeSeriesExplorer.loadingLabel', {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const TimeSeriesExplorerPage: FC<TimeSeriesExplorerPageProps> = ({
ref={resizeRef}
data-test-subj="mlPageSingleMetricViewer"
>
<EuiPage style={{ background: 'none' }}>
<EuiPage style={{ padding: '0px', background: 'none' }}>
<EuiPageBody>
<EuiScreenReaderOnly>
<h1>
Expand Down

0 comments on commit 074c66b

Please sign in to comment.