-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Unified search] Fixes the problem with the button popover buttons on DSL filters #142402
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this fix @stratoula !
I tested locally and this does work, but I think we can make use of the isolate
rule to lift all changes to one place.
I tested on Firefox and this issue does not exist there. I couldn't quite figure out why this is happening because we are setting overflow: hidden
on the relative ancestor 😅 . Great job finding the solution with stacking context!
src/plugins/unified_search/public/filter_bar/filter_editor/filter_editor.tsx
Outdated
Show resolved
Hide resolved
💚 Build Succeeded
Metrics [docs]Async chunks
History
To update your PR or re-run it, just comment with: |
Pinging @elastic/kibana-app-services (Team:AppServicesSv) |
… DSL filters (elastic#142402) * [Unified search] Fixes the problem with the button popover buttons on DSL filters * Add comment * Apply comments (cherry picked from commit fe2210b)
💚 All backports created successfully
Note: Successful backport PRs will be merged automatically after passing CI. Questions ?Please refer to the Backport tool documentation |
… DSL filters (#142402) (#142458) * [Unified search] Fixes the problem with the button popover buttons on DSL filters * Add comment * Apply comments (cherry picked from commit fe2210b) Co-authored-by: Stratoula Kalafateli <[email protected]>
… DSL filters (elastic#142402) * [Unified search] Fixes the problem with the button popover buttons on DSL filters * Add comment * Apply comments
… DSL filters (elastic#142402) * [Unified search] Fixes the problem with the button popover buttons on DSL filters * Add comment * Apply comments
Summary
Closes #142211
By adding
position: relative
on the buttons, make them responsive and fixes the bug mentioned on the issue.