hdf
This commit is contained in:
@@ -9330,7 +9330,7 @@ input#s_avatar {
|
||||
height: 100%;
|
||||
background-color: rgba(0, 0, 0, 0.9);
|
||||
backdrop-filter: blur(5px);
|
||||
z-index: 10000;
|
||||
z-index: 100100;
|
||||
display: none;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
@@ -19031,7 +19031,7 @@ body.onara-modal-open #sidebar-drag-zone {
|
||||
z-index: 10050 !important;
|
||||
display: none;
|
||||
flex-direction: column !important;
|
||||
background: rgba(0, 0, 0, 0.70) !important;
|
||||
background: rgba(0, 0, 0, 0.35) !important;
|
||||
backdrop-filter: blur(5px) saturate(130%) !important;
|
||||
-webkit-backdrop-filter: blur(5px) saturate(130%) !important;
|
||||
overflow-y: auto !important;
|
||||
@@ -19266,6 +19266,7 @@ body.onara-modal-open #login-modal,
|
||||
body.onara-modal-open #register-modal,
|
||||
body.onara-modal-open #shortcuts-modal,
|
||||
body.onara-modal-open #excluded-tags-overlay,
|
||||
body.onara-modal-open #search-overlay,
|
||||
body.onara-modal-open #upload-drag-modal,
|
||||
body.onara-modal-open #rethumb-capture-modal,
|
||||
body.onara-modal-open #gchat-img-modal {
|
||||
|
||||
@@ -1799,6 +1799,18 @@ window.cancelAnimFrame = (function () {
|
||||
}
|
||||
return;
|
||||
}
|
||||
const searchOverlay = document.getElementById('search-overlay');
|
||||
if (searchOverlay && searchOverlay.classList.contains('visible')) {
|
||||
const closeBtn = document.getElementById('search-close');
|
||||
if (closeBtn) closeBtn.click();
|
||||
return;
|
||||
}
|
||||
const excludedTagsOverlay = document.getElementById('excluded-tags-overlay');
|
||||
if (excludedTagsOverlay && excludedTagsOverlay.classList.contains('visible')) {
|
||||
const closeBtn = document.getElementById('excluded-tags-close');
|
||||
if (closeBtn) closeBtn.click();
|
||||
return;
|
||||
}
|
||||
if (document.body.classList.contains('onara-modal-open')) {
|
||||
closeOnaraModal();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user