diff --git a/docs/en_US/release_notes_6_3.rst b/docs/en_US/release_notes_6_3.rst index 3ad889f6c..50c785817 100644 --- a/docs/en_US/release_notes_6_3.rst +++ b/docs/en_US/release_notes_6_3.rst @@ -47,3 +47,4 @@ Bug fixes | `Issue #7046 `_ - Fixed some accessibility issues. | `Issue #7048 `_ - Fixed unhashable type issue while opening the about dialog. | `Issue #7064 `_ - Ensure that the Owner should not be disabled while creating the procedure. +| `Issue #7071 `_ - Fixed an issue where confirmation pop-up is hidden behind Reassign/Drop Owned Dialog. diff --git a/web/pgadmin/browser/server_groups/servers/databases/static/js/database.js b/web/pgadmin/browser/server_groups/servers/databases/static/js/database.js index 356639616..b035994f7 100644 --- a/web/pgadmin/browser/server_groups/servers/databases/static/js/database.js +++ b/web/pgadmin/browser/server_groups/servers/databases/static/js/database.js @@ -258,10 +258,7 @@ define('pgadmin.node.database', [ }); }, function() { return true; } - ).set('labels', { - ok: gettext('Yes'), - cancel: gettext('No'), - }); + ); } return false; diff --git a/web/pgadmin/static/js/Theme/index.jsx b/web/pgadmin/static/js/Theme/index.jsx index b9f9b1860..d800bb10f 100644 --- a/web/pgadmin/static/js/Theme/index.jsx +++ b/web/pgadmin/static/js/Theme/index.jsx @@ -180,6 +180,9 @@ basicSettings = createMuiTheme(basicSettings, { leavingScreen: 95, } }, + zIndex: { + modal: 2000, + }, props: { MuiTextField: { variant: 'outlined', diff --git a/web/pgadmin/static/scss/_webcabin.pgadmin.scss b/web/pgadmin/static/scss/_webcabin.pgadmin.scss index 7d9d4289e..8ca96298b 100644 --- a/web/pgadmin/static/scss/_webcabin.pgadmin.scss +++ b/web/pgadmin/static/scss/_webcabin.pgadmin.scss @@ -261,7 +261,7 @@ .wcMenuList, .context-menu-list { border: 1px solid $dropdown-border-color; - z-index: 9999 !important; + z-index: 1999 !important; background-color: $dropdown-bg; box-shadow: $dropdown-box-shadow; border-radius: $dropdown-border-radius;