From 5d392a2a07b67dc13df33406b24718fff795f2b6 Mon Sep 17 00:00:00 2001 From: miukimiu Date: Thu, 21 Jan 2021 12:39:49 +0000 Subject: [PATCH] Fix prepend and append heights --- CHANGELOG.md | 4 +++- src/components/combo_box/_combo_box.scss | 7 +++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 72ea01a4a3b..06f5cb24c1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ ## [`master`](https://github.com/elastic/eui/tree/master) -No public interface changes since `31.3.0`. +**Bug fixes** + +- Fixed heights of `append` and `prepend` in `EuiComboBox` ([#4410](https://github.com/elastic/eui/pull/4406)) ## [`31.3.0`](https://github.com/elastic/eui/tree/v31.3.0) diff --git a/src/components/combo_box/_combo_box.scss b/src/components/combo_box/_combo_box.scss index 5528c6892c0..ae15f22da35 100644 --- a/src/components/combo_box/_combo_box.scss +++ b/src/components/combo_box/_combo_box.scss @@ -137,4 +137,11 @@ } } } + + // Overrides the euiFormControlLayout prepend and append height that is 100% + .euiFormControlLayout__prepend, + .euiFormControlLayout__append { + // sass-lint:disable-block no-important + height: auto !important; + } }