diff --git a/web/src/authentik.css b/web/src/authentik.css index 7672cc32e..9d5c6d468 100644 --- a/web/src/authentik.css +++ b/web/src/authentik.css @@ -169,6 +169,13 @@ select[multiple] { .pf-c-table__toggle-icon { color: var(--ak-dark-foreground); } + /* expandable elements */ + .pf-c-expandable-section__toggle-text { + color: var(--ak-dark-foreground); + } + .pf-c-expandable-section__toggle-icon { + color: var(--ak-dark-foreground); + } /* inputs */ .pf-c-input-group { --pf-c-input-group--BackgroundColor: transparent; diff --git a/web/src/elements/Expand.ts b/web/src/elements/Expand.ts new file mode 100644 index 000000000..3cb684702 --- /dev/null +++ b/web/src/elements/Expand.ts @@ -0,0 +1,36 @@ +import { gettext } from "django"; +import { CSSResult, customElement, html, LitElement, property, TemplateResult } from "lit-element"; +import { COMMON_STYLES } from "../common/styles"; + +@customElement("ak-expand") +export class Expand extends LitElement { + + @property({ type: Boolean }) + expanded = false; + + @property() + textOpen = "Show less"; + + @property() + textClosed = "Show more"; + + static get styles(): CSSResult[] { + return COMMON_STYLES; + } + + render(): TemplateResult { + console.log(this.expanded); + return html`
+ + +
`; + } + +} diff --git a/web/src/pages/events/EventInfo.ts b/web/src/pages/events/EventInfo.ts index af88adf85..c51d7fe7f 100644 --- a/web/src/pages/events/EventInfo.ts +++ b/web/src/pages/events/EventInfo.ts @@ -76,10 +76,11 @@ export class EventInfo extends LitElement {

${gettext("Using flow")}

${until(Flow.list({ - flow_uuid: this.event.context.flow as string, - }).then(resp => { - return html`${resp.results[0].name}`; - }), html``)} + flow_uuid: this.event.context.flow as string, + }).then(resp => { + return html`${resp.results[0].name}`; + }), html``)} +
`; case "login_failed":