mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where confirmation pop-up is hidden behind Reassign/Drop Owned Dialog. Fixes #7071
This commit is contained in:
parent
83e646c7d4
commit
6875d00e44
@ -47,3 +47,4 @@ Bug fixes
|
|||||||
| `Issue #7046 <https://redmine.postgresql.org/issues/7046>`_ - Fixed some accessibility issues.
|
| `Issue #7046 <https://redmine.postgresql.org/issues/7046>`_ - Fixed some accessibility issues.
|
||||||
| `Issue #7048 <https://redmine.postgresql.org/issues/7048>`_ - Fixed unhashable type issue while opening the about dialog.
|
| `Issue #7048 <https://redmine.postgresql.org/issues/7048>`_ - Fixed unhashable type issue while opening the about dialog.
|
||||||
| `Issue #7064 <https://redmine.postgresql.org/issues/7064>`_ - Ensure that the Owner should not be disabled while creating the procedure.
|
| `Issue #7064 <https://redmine.postgresql.org/issues/7064>`_ - Ensure that the Owner should not be disabled while creating the procedure.
|
||||||
|
| `Issue #7071 <https://redmine.postgresql.org/issues/7071>`_ - Fixed an issue where confirmation pop-up is hidden behind Reassign/Drop Owned Dialog.
|
||||||
|
@ -258,10 +258,7 @@ define('pgadmin.node.database', [
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
function() { return true; }
|
function() { return true; }
|
||||||
).set('labels', {
|
);
|
||||||
ok: gettext('Yes'),
|
|
||||||
cancel: gettext('No'),
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
@ -180,6 +180,9 @@ basicSettings = createMuiTheme(basicSettings, {
|
|||||||
leavingScreen: 95,
|
leavingScreen: 95,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
zIndex: {
|
||||||
|
modal: 2000,
|
||||||
|
},
|
||||||
props: {
|
props: {
|
||||||
MuiTextField: {
|
MuiTextField: {
|
||||||
variant: 'outlined',
|
variant: 'outlined',
|
||||||
|
@ -261,7 +261,7 @@
|
|||||||
|
|
||||||
.wcMenuList, .context-menu-list {
|
.wcMenuList, .context-menu-list {
|
||||||
border: 1px solid $dropdown-border-color;
|
border: 1px solid $dropdown-border-color;
|
||||||
z-index: 9999 !important;
|
z-index: 1999 !important;
|
||||||
background-color: $dropdown-bg;
|
background-color: $dropdown-bg;
|
||||||
box-shadow: $dropdown-box-shadow;
|
box-shadow: $dropdown-box-shadow;
|
||||||
border-radius: $dropdown-border-radius;
|
border-radius: $dropdown-border-radius;
|
||||||
|
Loading…
Reference in New Issue
Block a user