From 9b29b1989a3b1709e095b9436703e3f700f45971 Mon Sep 17 00:00:00 2001 From: Pete Harverson Date: Fri, 14 Sep 2018 17:37:50 +0100 Subject: [PATCH] [ML] Fixes z-index of Explorer severity combo box for job picker (#23189) --- x-pack/plugins/ml/public/explorer/styles/main.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/x-pack/plugins/ml/public/explorer/styles/main.less b/x-pack/plugins/ml/public/explorer/styles/main.less index 79b848135ef8d..b3c297821bcbf 100644 --- a/x-pack/plugins/ml/public/explorer/styles/main.less +++ b/x-pack/plugins/ml/public/explorer/styles/main.less @@ -116,6 +116,11 @@ .ml-anomalies-controls { padding-top: 5px; + .ml-select-severity.euiComboBox { + // Overrides .euiComboBox z-index to ensure it appears below the job picker. + z-index: 0; + } + #show_charts_checkbox_control { padding-top: 28px; }