From 96395d60dbc405b1fda1be3fe37ec7968aa8c1b9 Mon Sep 17 00:00:00 2001 From: Yash Jain Date: Fri, 31 Mar 2023 19:33:15 +0530 Subject: [PATCH] fix: change z-index of freeze component to make it appear above all components changed the z-index value of #freeze id to 9999 so that it appears above all UI components fixes #20538 --- frappe/public/scss/desk/global.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/scss/desk/global.scss b/frappe/public/scss/desk/global.scss index 5294779990..9e5d7ef6fe 100644 --- a/frappe/public/scss/desk/global.scss +++ b/frappe/public/scss/desk/global.scss @@ -418,7 +418,7 @@ kbd { // freeze backdrop text #freeze { - z-index: 1020; + z-index: 9999; bottom: 0; opacity: 0; background-color: var(--bg-color);