Implemented auth app authentication in API mode (if loading the app itself wasn't blocked). Removed unnecessary toasts when entering restricted pages.

This commit is contained in:
2025-12-02 15:25:31 +00:00
parent d4f8e97469
commit 3030122807
9 changed files with 243 additions and 65 deletions
+18
View File
@@ -715,3 +715,21 @@ th {
padding: 1.5rem;
}
}
/* Auth iframe overlay styles */
body:has(#auth-iframe) {
overflow: hidden;
}
#auth-iframe {
border: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
color-scheme: auto;
backdrop-filter: blur(4px) brightness(0.7);
-webkit-backdrop-filter: blur(4px) brightness(0.7);
}