From 2d6646c485558e875135bd9711f17497e730b9ac Mon Sep 17 00:00:00 2001 From: miukimiu Date: Wed, 8 Jul 2020 14:59:04 +0100 Subject: [PATCH 1/2] Fix EuiHorizontalSteps rendering over EuiHeader --- CHANGELOG.md | 1 + src/components/steps/_steps_horizontal.scss | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 60aafb7ed29..22c4bc08bcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ No public interface changes since `27.0.0`. - Fixed a bug in `EuiResizableContainer` preventing nested containers ([#3699](https://github.com/elastic/eui/pull/3699)) - Fixed a bug in `EuiResizableContainer` preventing resizing by arrow keys in some cases ([#3699](https://github.com/elastic/eui/pull/3699)) +- Fixed `EuiHorizontalSteps` rendering over `EuiHeader` ([#3699](https://github.com/elastic/eui/pull/3699)) **Breaking changes** diff --git a/src/components/steps/_steps_horizontal.scss b/src/components/steps/_steps_horizontal.scss index 03e6bbe8bec..85e0bcbddfe 100644 --- a/src/components/steps/_steps_horizontal.scss +++ b/src/components/steps/_steps_horizontal.scss @@ -82,7 +82,7 @@ .euiStepHorizontal__number { position: relative; /* 1 */ - z-index: $euiZLevel1; /* 1 */ + z-index: $euiZLevel0 + 1; /* 1 */ transition: all $euiAnimSpeedFast ease-in-out; } From 625bb29371832ae33d0438f1988af0b1f4f9aecb Mon Sep 17 00:00:00 2001 From: miukimiu Date: Wed, 8 Jul 2020 15:11:23 +0100 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22c4bc08bcf..d94b270350e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ No public interface changes since `27.0.0`. - Fixed a bug in `EuiResizableContainer` preventing nested containers ([#3699](https://github.com/elastic/eui/pull/3699)) - Fixed a bug in `EuiResizableContainer` preventing resizing by arrow keys in some cases ([#3699](https://github.com/elastic/eui/pull/3699)) -- Fixed `EuiHorizontalSteps` rendering over `EuiHeader` ([#3699](https://github.com/elastic/eui/pull/3699)) +- Fixed `EuiHorizontalSteps` rendering over `EuiHeader` ([#3707](https://github.com/elastic/eui/pull/3707)) **Breaking changes**