From 25a26fd004128e0b9e5777e4e609dc49d7e31e81 Mon Sep 17 00:00:00 2001 From: Sergey Myssak Date: Fri, 7 Apr 2023 16:27:43 +0600 Subject: [PATCH] Fix bottom notification bar width (#3336) Co-authored-by: Andrey Myssak Signed-off-by: Sergey Myssak --- CHANGELOG.md | 1 + .../public/management_app/_advanced_settings.scss | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 09445595256..dd2cb59d8de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -132,6 +132,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - [Table Visualization] Fix table rendering empty unused space ([#3797](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3797)) - [Table Visualization] Fix data table not adjusting height on the initial load ([#3816](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3816)) - Cleanup unused url ([#3847](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3847)) +- [BUG] Docked navigation impacts visibility of bottom bar component ([#3804](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3804)) ### 🚞 Infrastructure diff --git a/src/plugins/advanced_settings/public/management_app/_advanced_settings.scss b/src/plugins/advanced_settings/public/management_app/_advanced_settings.scss index 82704fc9306..3cdf0fe1928 100644 --- a/src/plugins/advanced_settings/public/management_app/_advanced_settings.scss +++ b/src/plugins/advanced_settings/public/management_app/_advanced_settings.scss @@ -80,3 +80,7 @@ .osdBody--mgtAdvancedSettingsHasBottomBar .mgtPage__body { padding-bottom: $euiSizeXL * 2; } + +.euiBody--hasFlyout .euiBottomBar { + left: 320px !important; +}