From c7baa66de28378fee248c766640928b9726ea3cc Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 17 Sep 2022 17:40:12 -0700 Subject: [PATCH] Fixed: Series list jump bar click issues (cherry picked from commit 9c7378625112088d022239fdbdb90c0dc941d61d) --- frontend/src/Components/Page/PageJumpBar.css | 1 + frontend/src/Styles/Variables/zIndexes.js | 1 + 2 files changed, 2 insertions(+) diff --git a/frontend/src/Components/Page/PageJumpBar.css b/frontend/src/Components/Page/PageJumpBar.css index 9a116fb54..f5ae7a729 100644 --- a/frontend/src/Components/Page/PageJumpBar.css +++ b/frontend/src/Components/Page/PageJumpBar.css @@ -1,4 +1,5 @@ .jumpBar { + z-index: $pageJumpBarZIndex; display: flex; align-content: stretch; align-items: stretch; diff --git a/frontend/src/Styles/Variables/zIndexes.js b/frontend/src/Styles/Variables/zIndexes.js index 986ceb548..4d10253a7 100644 --- a/frontend/src/Styles/Variables/zIndexes.js +++ b/frontend/src/Styles/Variables/zIndexes.js @@ -1,4 +1,5 @@ module.exports = { + pageJumpBarZIndex: 10, modalZIndex: 1000, popperZIndex: 2000 };