Merge branch 'staging' into parser-enum-stuff

This commit is contained in:
LenAnderson
2024-06-19 09:47:01 -04:00
8 changed files with 73 additions and 32 deletions

View File

@@ -625,7 +625,7 @@ export class QuickReply {
this.editorExecuteErrors.innerHTML = '';
this.editorExecuteResult.innerHTML = '';
if (this.editorExecuteHide.checked) {
this.editorPopup.dom.classList.add('qr--hide');
this.editorPopup.dlg.classList.add('qr--hide');
}
try {
// this.editorExecutePromise = this.execute({}, true);
@@ -694,7 +694,7 @@ export class QuickReply {
}
this.editorExecutePromise = null;
this.editorExecuteBtn.classList.remove('qr--busy');
this.editorPopup.dom.classList.remove('qr--hide');
this.editorPopup.dlg.classList.remove('qr--hide');
}
updateEditorProgress(done, total) {

View File

@@ -507,3 +507,6 @@
.popup.qr--hide {
opacity: 0 !important;
}
.popup.qr--hide::backdrop {
opacity: 0 !important;
}

View File

@@ -529,4 +529,7 @@
.popup.qr--hide {
opacity: 0 !important;
&::backdrop {
opacity: 0 !important;
}
}