From a2f38254d4a27d2e4965922ed3f6b74653cacb35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20B=C5=82a=C5=BCejewicz=20=28Peter=20Blazejewicz=29?= Date: Wed, 11 Dec 2019 22:15:04 +0100 Subject: [PATCH] Change z-index value for reconnect modal. Fixes #12867 (#17512) This changes the z-index of the Blazor reconnect modal to be aligned with the z-index used by Bootstrap for modals overlays. If users rely on Bootstrap for overlays within application this would prevent obstruction of the Blazor's reconnect information with other overlays in the application. Addresses #12867 --- .../Web.JS/src/Platform/Circuits/DefaultReconnectDisplay.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Web.JS/src/Platform/Circuits/DefaultReconnectDisplay.ts b/src/Components/Web.JS/src/Platform/Circuits/DefaultReconnectDisplay.ts index b8f755d8ac..58d9eb7e37 100644 --- a/src/Components/Web.JS/src/Platform/Circuits/DefaultReconnectDisplay.ts +++ b/src/Components/Web.JS/src/Platform/Circuits/DefaultReconnectDisplay.ts @@ -22,7 +22,7 @@ export class DefaultReconnectDisplay implements ReconnectDisplay { 'right: 0', 'bottom: 0', 'left: 0', - 'z-index: 1000', + 'z-index: 1050', 'display: none', 'overflow: hidden', 'background-color: #fff',