From fb5c38b528108033e7349b9706106d2a282c8cda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Fri, 5 Oct 2018 22:44:17 +0100 Subject: [PATCH] fix(ui): set high z-index on react-select dropdown menu It's currently 1 which is the same as buttons on the calendar picker used in the silence form, dropdown needs to have higher value --- ui/src/Components/MultiSelect/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/src/Components/MultiSelect/index.js b/ui/src/Components/MultiSelect/index.js index b4d68dd3a..95f6bae04 100644 --- a/ui/src/Components/MultiSelect/index.js +++ b/ui/src/Components/MultiSelect/index.js @@ -76,6 +76,10 @@ const ReactSelectStyles = { borderTopRightRadius: "0.25rem", borderBottomRightRadius: "0.25rem" }), + menu: (base, state) => ({ + ...base, + zIndex: 100 + }), option: (base, state) => ({ ...base, color: "inherit",