Files
authentik/web/src/elements/LoadingOverlay.css
T
Teffen Ellis 61a75e6a0a web: Flow Executor layout fixes (#20134)
* 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.
2026-02-16 20:29:32 +01:00

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);
}