Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

web: Client-side MDX rendering #13610

Merged
merged 5 commits into from
Mar 21, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
revert css for links and tables
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
BeryJu committed Mar 21, 2025
commit f9ea3eb63d5379edf2d8f39306ac789e1f97732e
53 changes: 0 additions & 53 deletions web/src/common/styles/authentik.css
Original file line number Diff line number Diff line change
@@ -49,41 +49,6 @@ html > form > input {

/* #endregion */

/* #region Anchors */

a {
--pf-global--link--Color: var(--pf-global--link--Color--light);
--pf-global--link--Color--hover: var(--pf-global--link--Color--light--hover);
--pf-global--link--Color--visited: var(--pf-global--link--Color);
}

/*
Note that order of anchor pseudo-selectors must follow:

1. link
2. visited
3. hover
4. active
*/

a:link {
color: var(--pf-global--link--Color);
}

a:visited {
color: var(--pf-global--link--Color--visited);
}

a:hover {
color: var(--pf-global--link--Color--hover);
}

a:active {
color: var(--pf-global--link--Color);
}

/* #endregion */

/* #region Icons */

.pf-icon {
@@ -228,24 +193,6 @@ a:active {
padding-inline-start: 0;
}

/* #region Tables */

table thead,
table tr:nth-child(2n) {
background-color: var(
--ak-table-stripe-background,
var(--pf-global--BackgroundColor--light-200)
);
}

table td,
table th {
border: var(--pf-table-border-width) solid var(--ifm-table-border-color);
padding: var(--pf-global--spacer--md);
}

/* #endregion */

/* #region Code blocks */

pre:has(.hljs) {

Unchanged files with check annotations Beta

ENV GEOIPUPDATE_EDITION_IDS="GeoLite2-City GeoLite2-ASN"
ENV GEOIPUPDATE_VERBOSE="1"
ENV GEOIPUPDATE_ACCOUNT_ID_FILE="/run/secrets/GEOIPUPDATE_ACCOUNT_ID"
ENV GEOIPUPDATE_LICENSE_KEY_FILE="/run/secrets/GEOIPUPDATE_LICENSE_KEY"

Check warning on line 88 in Dockerfile

GitHub Actions / build / build-server-amd64 / Build amd64

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GEOIPUPDATE_LICENSE_KEY_FILE") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 88 in Dockerfile

GitHub Actions / build / build-server-arm64 / Build arm64

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "GEOIPUPDATE_LICENSE_KEY_FILE") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
USER root
RUN --mount=type=secret,id=GEOIPUPDATE_ACCOUNT_ID \