mirror of
https://github.com/goauthentik/authentik
synced 2026-05-08 16:13:02 +02:00
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. Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com>
42 lines
762 B
CSS
42 lines
762 B
CSS
:host,
|
|
ak-form-static.style-scope {
|
|
margin-block-start: var(--pf-global--spacer--sm);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-flow: wrap;
|
|
gap: var(--pf-global--spacer--sm);
|
|
}
|
|
|
|
.pf-c-avatar {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.primary-content {
|
|
display: flex;
|
|
align-items: center;
|
|
flex: 1 1 auto;
|
|
gap: var(--pf-global--spacer--md);
|
|
}
|
|
|
|
.username {
|
|
flex: 1 1 auto;
|
|
text-align: left;
|
|
max-width: 20rem;
|
|
text-overflow: ellipsis;
|
|
overflow-wrap: break-word;
|
|
|
|
display: box;
|
|
display: -webkit-box;
|
|
line-clamp: 3;
|
|
-webkit-line-clamp: 3;
|
|
box-orient: vertical;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.links {
|
|
flex: 0 0 auto;
|
|
text-align: right;
|
|
}
|