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

[EuiComboBox] Fixed options list misalignment #4607

Merged
merged 4 commits into from
Mar 5, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- Fixed hover effect of nested clickable rows in `EuiBasicTable` ([#4566](https://github.com/elastic/eui/pull/4566))
- Fixed visual bug in drag&drop sections when nested in an popover ([#4590](https://github.com/elastic/eui/pull/4590))
- Fixed an errant export of `EuiSideNavProps` type from JS code ([#4604](https://github.com/elastic/eui/pull/4604))
- Fixed misalignment `EuiComboBox` options list ([#4607](https://github.com/elastic/eui/pull/4607))
thompsongl marked this conversation as resolved.
Show resolved Hide resolved

## [`31.9.1`](https://github.com/elastic/eui/tree/v31.9.1)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
.euiComboBoxOptionsList {
// Remove transforms from popover panel
transform: none !important; // sass-lint:disable-line no-important
top: 0;

&.euiPopover__panel-isAttached.euiComboBoxOptionsList--top { /* 1 */
@include euiBottomShadowFlat;
Expand Down