Fix styling of delete popup dialogs in mobile view

This commit is contained in:
Hadi Nategh 2023-02-28 12:22:57 +01:00
parent 91c9038ba8
commit 3d98159d2b
2 changed files with 17 additions and 8 deletions

View File

@ -8404,6 +8404,11 @@ table.egwGridView_grid img.et2_appicon {
clip: rect(0 0 0 0);
flex: 0 1 auto;
}
body et2-dialog#delete_popup {
position: absolute;
z-index: 1000000;
display: block;
}
body et2-button.plus_button {
position: fixed !important;
right: 15px;

View File

@ -662,15 +662,19 @@
}
et2-dialog et2-button[slot="footer"]:has(et2-image)::part(label) {
/* Visually hide labels but leave them there for accessibility */
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip: rect(0 0 0 0);
flex: 0 1 auto;
/* Visually hide labels but leave them there for accessibility */
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip: rect(0 0 0 0);
flex: 0 1 auto;
}
et2-dialog#delete_popup {
position: absolute;
z-index: 1000000;
display: block;
}
et2-button.plus_button {
position: fixed !important;
right: 15px;