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

[Stack Management] Converted to use KibanaPageTemplate (sort of) #101335

Merged
merged 13 commits into from
Jun 8, 2021
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@
"section": "def-public.ImAType",
"text": "ImAType"
},
", e?: string | undefined) => ",
", e: string | undefined) => ",
{
"pluginId": "pluginA",
"scope": "public",
Expand Down
6 changes: 6 additions & 0 deletions src/core/public/styles/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,9 @@
.euiBody--collapsibleNavIsDocked .euiBottomBar {
margin-left: $euiCollapsibleNavWidth;
}

// Temporary fix for EuiPageHeader with a bottom border but no tabs or padding
// Will fix in EUI -- @cchaos
.euiPageHeader--bottomBorder:not(.euiPageHeader--tabsAtBottom):not([class*='euiPageHeader--padding']) {
padding-bottom: $euiSizeL;
}
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ export class AdvancedSettings extends Component<AdvancedSettingsProps, AdvancedS
dockLinks={this.props.dockLinks}
toasts={this.props.toasts}
trackUiMetric={this.props.trackUiMetric}
queryText={query.text}
/>
<PageFooter
toasts={this.props.toasts}
Expand Down
Loading