mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
61a75e6a0a
* Fix footer alignment. * Fix loading position in compatibility mode. * Apply min height only when placeholder content is present. * Fix alignment in compatibility mode. * Add compatibility mode host selectors. * Fix nullish challenge height. Clarify selector behavior. * Add type defintion * Fix padding. * Fix misapplication of pf-* class to container. * Fix huge base64 encoded attribute. * Clean up layering issues, order of styles. * Disable dev override. * Document parts.
19 lines
421 B
CSS
19 lines
421 B
CSS
:host,
|
|
ak-loading-overlay.style-scope {
|
|
position: absolute;
|
|
inset: 0;
|
|
z-index: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: var(
|
|
--ak-loading-overlay--BackgroundColor,
|
|
var(--pf-global--BackgroundColor--dark-transparent-200)
|
|
);
|
|
}
|
|
|
|
:host([topmost]),
|
|
ak-loading-overlay[topmost].style-scope {
|
|
z-index: var(--pf-global--ZIndex--2xl);
|
|
}
|