This commit is contained in:
2025-12-18 19:33:03 +02:00
parent 8fcb75eec4
commit eb3a761a71
2 changed files with 6 additions and 5 deletions
+1
View File
@@ -1049,6 +1049,7 @@ h2.block-title i {
.no-wrap { white-space: nowrap; }
.text-wrap { white-space: normal; }
.text-spacing { line-height: 1.6; }
.hidden {
position: absolute !important;
+5 -5
View File
@@ -65,12 +65,12 @@ export class Overlay {
const modalEl = ui.previousElementSibling;
if (!modalEl || !modalEl.classList.contains('sp-modal')) {
return;
}
modalEl.classList.add('hide-bg');
modalEl.addEventListener('animationend', function() {
this.remove();
}, {
once: true
});
modalEl.addEventListener('animationend', _ => modalEl.remove(), { once: true });
}
}