From e53712d0f9be7da6a3fa25c050b32320f1f6f443 Mon Sep 17 00:00:00 2001 From: Marta Bondyra <4283304+mbondyra@users.noreply.github.com> Date: Tue, 16 Jul 2024 19:50:52 +0200 Subject: [PATCH] [Lens] [Inline editing] Flyout gets too big fix (#188451) ## Summary Fixes https://github.com/elastic/kibana/issues/188330 Caused by eui upgrade: https://github.com/elastic/eui/commit/b1370afea85a7c5a7a4374132b64f8da757d2135 It's an ugly solution, but I couldn't find any other :( After the fix: Screenshot 2024-07-16 at 17 09 44 --- .../public/trigger_actions/open_lens_config/helpers.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/x-pack/plugins/lens/public/trigger_actions/open_lens_config/helpers.scss b/x-pack/plugins/lens/public/trigger_actions/open_lens_config/helpers.scss index 1356b046d5a89..ccb6556d650a5 100644 --- a/x-pack/plugins/lens/public/trigger_actions/open_lens_config/helpers.scss +++ b/x-pack/plugins/lens/public/trigger_actions/open_lens_config/helpers.scss @@ -13,4 +13,10 @@ pointer-events: auto; } } +} + +.lnsEditFlyoutBody { + .euiFlyoutBody__overflow { + transform: initial; + } } \ No newline at end of file