MOBILE-3432 core: Make file type exclusion modal always on top

main
Dani Palou 2020-09-21 10:39:23 +02:00
parent b8daa1dc1b
commit 9dce6d408b
4 changed files with 9 additions and 1 deletions

View File

@ -873,6 +873,10 @@ ion-app.app-root {
height: 100% !important;
}
.core-modal-force-on-top {
z-index: 100000 !important;
}
@media only screen and (min-height: 400px) and (min-width: 300px) {
.core-modal-lateral {
@include core-split-area-end();

View File

@ -1374,6 +1374,7 @@
"core.cannotconnectverify": "<strong>Please check the address is correct.</strong>",
"core.cannotdownloadfiles": "File downloading is disabled. Please contact your site administrator.",
"core.cannotopeninapp": "This file may not work as expected on this device. Would you like to open it anyway?",
"core.cannotopeninappdownload": "This file may not work as expected on this device. Would you like to download it anyway?",
"core.captureaudio": "Record audio",
"core.capturedimage": "Taken picture.",
"core.captureimage": "Take picture",
@ -1526,6 +1527,7 @@
"core.done": "Done",
"core.download": "Download",
"core.downloaded": "Downloaded",
"core.downloadfile": "Download file",
"core.downloading": "Downloading",
"core.edit": "Edit",
"core.editor.autosavesucceeded": "Draft saved.",

View File

@ -17,6 +17,7 @@
"cannotconnectverify": "<strong>Please check the address is correct.</strong>",
"cannotdownloadfiles": "File downloading is disabled. Please contact your site administrator.",
"cannotopeninapp": "This file may not work as expected on this device. Would you like to open it anyway?",
"cannotopeninappdownload": "This file may not work as expected on this device. Would you like to download it anyway?",
"captureaudio": "Record audio",
"capturedimage": "Taken picture.",
"captureimage": "Take picture",
@ -83,6 +84,7 @@
"done": "Done",
"download": "Download",
"downloaded": "Downloaded",
"downloadfile": "Download file",
"downloading": "Downloading",
"edit": "Edit",
"emptysplit": "This page will appear blank if the left panel is empty or is loading.",

View File

@ -1287,7 +1287,7 @@ export class CoreDomUtilsProvider {
];
if (!title) {
options.cssClass = 'core-nohead';
options.cssClass = (options.cssClass || '') + ' core-nohead';
}
this.showAlertWithOptions(options, 0);