packages/fonts: consolidate the RedHat and PatternFly icon faces into @goauthentik/fonts (#24461)

* packages/fonts: extract the RedHat variable faces into @goauthentik/fonts

The RedHat typefaces were checked in twice: web/fonts/RedHat held the six
variable faces the app actually loads, and packages/theme carried its own
copy of those plus twenty-four static weights. The variable files were
byte-identical in both places, but the two @font-face sets disagreed on
naming — web bound "RedHatText" to the variable face while the theme
bound it to the static Regular and used "RedHatTextVF" for the variable
one.

Move web's set, which is the canonical one, into a new assets-only
package and drop the theme's copy entirely. The theme now only names the
families; @goauthentik/fonts binds them to files. Nothing about what the
browser loads changes: same bytes, same family names, same vendor layer.

The package has no build step, and only faces.css needs an exports entry
— the url() references beside it resolve relative to that file in both
ESBuild and Vite.

ESBuild's `outbase` is now pinned to the monorepo root. Assets pulled
from a workspace package outside web/ otherwise land under a `..`
segment, which ESBuild sanitizes to `_.._`; Go's `//go:embed dist/*` in
static_outpost.go skips any segment starting with `_`, so the faces would
have gone missing from the embedded outpost build.

* packages/fonts: move the PatternFly icon faces into @goauthentik/fonts

The pficon and Font Awesome faces were declared inside the vendored
PatternFly icon stylesheets, with the font files sitting beside them
under web/src/styles/global/vendor/assets/. That put font bytes in three
places across the repo and tied the faces to stylesheets we re-vendor
whenever PatternFly moves.

Move both families next to the RedHat faces and declare them in a new
icons.css, kept separate from faces.css so a consumer can take the brand
text faces without the icon fonts. The icon classes stay with PatternFly
— only the @font-face rules and the files move. Same bytes: the emitted
assets keep their content hashes.

pficon.scss went too. It was an unreferenced Sass source whose
`$pf-global--fonticon-path` variable had nothing to resolve against.

The copies in shadow/patternfly-base.css are left alone. They come from
the PatternFly package and their font URLs are already stubbed out by the
bundled-text loader, because @font-face has no effect inside a shadow
root — components inherit the faces registered on the document.

* packages/fonts: record the licensing of every bundled font

The package declared MIT and shipped only Red Hat's OFL text, which
described neither what it redistributes nor what redistribution requires.
Three upstreams are bundled, under three different terms:

  RedHat text faces   OFL-1.1, (c) The Red Hat Project Authors
  pficon              MIT, (c) Red Hat, Inc., via PatternFly
  Font Awesome 5 Free OFL-1.1 for the font files, CC-BY-4.0 for the
                      icons they encode, (c) Fonticons, Inc.

Declare that as an SPDX expression, add the package's own MIT text, and
ship each upstream's license alongside a NOTICE.md recording provenance
per file. OFL 1.1 requires the copyright notice and license to travel
with any redistributed copy, and CC BY 4.0 requires attribution where the
icons are displayed; `files` now carries all of it into the tarball.

Two things NOTICE.md is explicit about rather than papering over:
@patternfly/patternfly ships no license file, so the MIT text here is Red
Hat's own copied from the sibling @patternfly/icons package; and Font
Awesome's published license carries a copyright line tracking its current
release rather than the 5.x release these files came from.
This commit is contained in:
Teffen Ellis
2026-08-06 15:10:43 +01:00
committed by GitHub
parent 87dbf2d02b
commit 7ec8872937
32 changed files with 399 additions and 827 deletions

View File

@@ -45,6 +45,7 @@ pnpm-workspace.yaml @goauthentik/frontend
/packages/docusaurus-config @goauthentik/frontend
/packages/esbuild-plugin-live-reload @goauthentik/frontend
/packages/eslint-config @goauthentik/frontend
/packages/fonts @goauthentik/frontend
/packages/prettier-config @goauthentik/frontend
/packages/logger-js @goauthentik/frontend
/packages/theme @goauthentik/frontend

View File

@@ -0,0 +1,11 @@
# Prettier Ignorefile
## Node
node_modules
## Static Files
**/LICENSE
LICENSE.txt
## Upstream license texts — reproduced verbatim, never reformatted
licenses

View File

@@ -0,0 +1,18 @@
The MIT License (MIT)
Copyright (c) 2026 Authentik Security, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

46
packages/fonts/NOTICE.md Normal file
View File

@@ -0,0 +1,46 @@
# Third-party notices
This package is MIT licensed (see `LICENSE.txt`), but it redistributes font
files that are not. The bundled licenses are recorded in the package's SPDX
expression, `MIT AND OFL-1.1 AND CC-BY-4.0`.
Nothing here is modified. Every font file is byte-identical to the upstream it
came from.
## Red Hat Text, Red Hat Display, Red Hat Mono
Declared in `faces.css`; the six `RedHat*VF.woff2` files.
- Copyright 2021 The Red Hat Project Authors, <https://github.com/RedHatOfficial/RedHatFont>
- SIL Open Font License 1.1 — full text in `licenses/RedHat-OFL-1.1.txt`
- Reserved Font Name: none declared
## pficon
Declared in `icons.css`; `pficon.woff2` and `pficon.woff`.
- Copyright Red Hat, Inc.
- MIT — text in `licenses/PatternFly-MIT.txt`
- Taken from `@patternfly/patternfly@4.224.5`, which declares MIT in its
`package.json` but ships no license file. The MIT text reproduced here is Red
Hat's own, copied from the sibling `@patternfly/icons` package. The canonical
text is at <https://github.com/patternfly/patternfly/blob/main/LICENSE>.
## Font Awesome 5 Free (Solid)
Declared in `icons.css`; `fa-solid-900.woff2` and `fa-solid-900.woff`.
- Copyright Fonticons, Inc., <https://fontawesome.com>
- Font files: SIL Open Font License 1.1. Reserved Font Name: "Font Awesome"
- The icons the fonts encode: CC BY 4.0, <https://creativecommons.org/licenses/by/4.0/>
- Full text in `licenses/FontAwesome-Free.txt`
Vendored through `@patternfly/patternfly@4.224.5`, which bundles the Solid
weight of Font Awesome 5 Free. The license text reproduced here is Font
Awesome Free's as published by Fonticons; note its copyright line tracks the
current release rather than the 5.x release these files are from. Font Awesome
Free's terms have been CC BY 4.0 for icons, SIL OFL 1.1 for fonts, and MIT for
code across both versions.
CC BY 4.0 requires attribution when the icons are displayed. This file, shipped
in the published package, carries it.

View File

@@ -1,3 +1,10 @@
/*
* authentik's brand text faces: the RedHat variable families.
*
* Copyright 2021 The Red Hat Project Authors, under the SIL Open Font License
* 1.1. See NOTICE.md for the full attribution and licenses/ for the texts.
*/
@font-face {
font-family: "RedHatDisplay";
src: url("./RedHatDisplayVF.woff2") format("woff2-variations");

36
packages/fonts/icons.css Normal file
View File

@@ -0,0 +1,36 @@
/*
* Icon font faces.
*
* These bind the two icon families authentik's PatternFly 4 components render
* glyphs from. The matching icon classes (`.pf-icon-*`, `.fa`) stay with
* PatternFly — only the @font-face declarations and the font files live here,
* so every consumer resolves the same bytes from one place.
*
* Provenance, both taken verbatim from @patternfly/patternfly@4.224.5:
*
* pficon PatternFly's own icon set. MIT, © Red Hat, Inc.
* Font Awesome 5 Free The solid weight only, which is all PatternFly 4
* bundles. The font files are SIL OFL 1.1; the icons
* they encode are CC BY 4.0, © Fonticons, Inc.
*
* See NOTICE.md for the full attribution and licenses/ for the license texts.
*
* @font-face only takes effect at the document level. Declaring these inside a
* shadow root does nothing — components inherit the faces registered here.
*/
@font-face {
font-family: "pficon";
src:
url("./pficon.woff2") format("woff2"),
url("./pficon.woff") format("woff");
}
@font-face {
font-family: "Font Awesome 5 Free";
font-style: normal;
font-weight: 900;
src:
url("./fa-solid-900.woff2") format("woff2"),
url("./fa-solid-900.woff") format("woff");
}

View File

@@ -0,0 +1,165 @@
Fonticons, Inc. (https://fontawesome.com)
--------------------------------------------------------------------------------
Font Awesome Free License
Font Awesome Free is free, open source, and GPL friendly. You can use it for
commercial projects, open source projects, or really almost whatever you want.
Full Font Awesome Free license: https://fontawesome.com/license/free.
--------------------------------------------------------------------------------
# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
The Font Awesome Free download is licensed under a Creative Commons
Attribution 4.0 International License and applies to all icons packaged
as SVG and JS file types.
--------------------------------------------------------------------------------
# Fonts: SIL OFL 1.1 License
In the Font Awesome Free download, the SIL OFL license applies to all icons
packaged as web and desktop font files.
Copyright (c) 2026 Fonticons, Inc. (https://fontawesome.com)
with Reserved Font Name: "Font Awesome".
This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL
SIL OPEN FONT LICENSE
Version 1.1 - 26 February 2007
PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.
The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.
DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.
"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).
"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).
"Modified Version" refers to any derivative made by adding to, deleting,
or substituting — in part or in whole — any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.
"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.
PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:
1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.
2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.
3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.
5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.
TERMINATION
This license becomes null and void if any of the above conditions are
not met.
DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.
--------------------------------------------------------------------------------
# Code: MIT License (https://opensource.org/licenses/MIT)
In the Font Awesome Free download, the MIT license applies to all non-font and
non-icon files.
Copyright 2026 Fonticons, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in the
Software without restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so, subject to the
following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--------------------------------------------------------------------------------
# Attribution
Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
Awesome Free files already contain embedded comments with sufficient
attribution, so you shouldn't need to do anything additional when using these
files normally.
We've kept attribution comments terse, so we ask that you do not actively work
to remove them from files, especially code. They're a great way for folks to
learn about Font Awesome.
--------------------------------------------------------------------------------
# Brand Icons
All brand icons are trademarks of their respective owners. The use of these
trademarks does not indicate endorsement of the trademark holder by Font
Awesome, nor vice versa. **Please do not use brand logos for any purpose except
to represent the company, product, or service to which they refer.**

View File

@@ -0,0 +1,7 @@
Copyright © 2023 Red Hat, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@@ -0,0 +1,70 @@
{
"name": "@goauthentik/fonts",
"version": "1.0.0",
"description": "The typefaces authentik ships: the RedHat variable faces and the PatternFly icon faces.",
"license": "MIT AND OFL-1.1 AND CC-BY-4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/goauthentik/authentik.git",
"directory": "packages/fonts"
},
"scripts": {
"prettier": "prettier --write .",
"prettier-check": "prettier --check ."
},
"type": "module",
"exports": {
"./package.json": "./package.json",
"./faces.css": "./faces.css",
"./icons.css": "./icons.css"
},
"devDependencies": {
"@goauthentik/prettier-config": "link:../prettier-config",
"prettier": "catalog:",
"prettier-plugin-packagejson": "catalog:"
},
"files": [
"faces.css",
"icons.css",
"*.woff",
"*.woff2",
"LICENSE.txt",
"NOTICE.md",
"licenses/**"
],
"engines": {
"node": ">=24"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24",
"onFail": "ignore"
},
"packageManager": {
"name": "pnpm",
"version": ">=11.5.1",
"onFail": "ignore"
}
},
"prettier": "@goauthentik/prettier-config",
"publishConfig": {
"access": "public"
},
"#exports-comment": [
"Only the two stylesheets need entries. The `url(\"./RedHatTextVF.woff2\")`",
"references inside them are resolved relative to the stylesheet by the",
"consuming bundler, not through this exports map.",
"faces.css holds the RedHat brand text faces; icons.css holds the icon",
"faces PatternFly components render glyphs from. They are separate so a",
"consumer can take the brand faces without the icon fonts.",
"There is no build step — the package is checked-in assets."
],
"#license-comment": [
"The package itself is MIT (LICENSE.txt). The font files it redistributes",
"are not: the RedHat faces are OFL-1.1, Font Awesome's font files are",
"OFL-1.1 with the icons under CC-BY-4.0, and pficon is MIT via PatternFly.",
"NOTICE.md records the provenance and license of each file, and licenses/",
"carries the full texts. Both ship in the published package."
]
}

12
pnpm-lock.yaml generated
View File

@@ -274,6 +274,18 @@ importers:
specifier: 'catalog:'
version: 8.65.0(eslint@9.39.5(jiti@1.21.7))(typescript@6.0.3)
packages/fonts:
devDependencies:
'@goauthentik/prettier-config':
specifier: link:../prettier-config
version: link:../prettier-config
prettier:
specifier: 'catalog:'
version: 3.8.3
prettier-plugin-packagejson:
specifier: 'catalog:'
version: 3.0.2(prettier@3.8.3)
packages/geo:
dependencies:
h3-js:

View File

@@ -2,6 +2,7 @@ packages:
- "packages/docusaurus-config"
- "packages/esbuild-plugin-live-reload"
- "packages/eslint-config"
- "packages/fonts"
- "packages/geo"
- "packages/logger-js"
- "packages/prettier-config"

View File

@@ -35,7 +35,7 @@ The `interface.global.css` file is almost entirely imports:
3. @patternfly/.../patternfly-themes.css — dark-theme token reassignments
4. @patternfly/.../patternfly-fa-icons.css, patternfly-pf-icons.css — icon @font-face + classes
5. @patternfly/.../components/Spinner/spinner.css
6. #fonts/RedHat/faces.css — RedHat @font-face
6. @goauthentik/fonts/faces.css — RedHat @font-face
7. ./base/fonts.css
8. ./base/variables.css, which in turn loads:
- colors

View File

@@ -52,7 +52,6 @@
}
},
"imports": {
"#fonts/*.css": "./fonts/*.css",
"#styles/*.css": "./src/styles/*.css",
"#styles/*": "./src/styles/*.js",
"#common/*": "./src/common/*.js",
@@ -102,6 +101,7 @@
"@goauthentik/core": "workspace:*",
"@goauthentik/esbuild-plugin-live-reload": "^2.0.3",
"@goauthentik/eslint-config": "^2.0.3",
"@goauthentik/fonts": "link:../packages/fonts",
"@goauthentik/prettier-config": "^3.5.0",
"@goauthentik/tsconfig": "^1.0.9",
"@hcaptcha/types": "^1.2.0",

3
web/pnpm-lock.yaml generated
View File

@@ -124,6 +124,9 @@ importers:
'@goauthentik/eslint-config':
specifier: ^2.0.3
version: 2.0.3(@typescript-eslint/parser@8.65.0(eslint@9.39.5(jiti@2.7.0))(typescript@6.0.3))(jiti@2.7.0)(react-dom@19.2.8(react@19.2.8))(react@19.2.8)(typescript-eslint@8.65.0(eslint@9.39.5(jiti@2.7.0))(typescript@6.0.3))(typescript@6.0.3)
'@goauthentik/fonts':
specifier: link:../packages/fonts
version: link:../packages/fonts
'@goauthentik/prettier-config':
specifier: ^3.5.0
version: 3.5.0(jiti@2.7.0)(prettier-plugin-packagejson@3.0.2(prettier@3.8.3))(prettier@3.8.3)

View File

@@ -11,6 +11,7 @@ packages:
# lockfile. Without these exclusions the `packages/*` glob then swallows
# them as workspace importers, committing phantom entries that every local
# `pnpm install` prunes right back out.
- "!packages/fonts"
- "!packages/prettier-config"
- "!packages/tsconfig"

View File

@@ -90,6 +90,17 @@ const BASE_ESBUILD_OPTIONS = {
entryNames: `[dir]/[name]-${BuildIdentifier}`,
chunkNames: "[dir]/chunks/[hash]",
assetNames: "assets/[dir]/[name]-[hash]",
/**
* Anchor `[dir]` at the monorepo root rather than letting ESBuild infer it
* from the entry points.
*
* Assets pulled from a workspace package outside `web/` (the RedHat faces in
* `@goauthentik/fonts`) would otherwise resolve to a `..` segment, which
* ESBuild sanitizes to `_.._`. Go's `//go:embed dist/*` in `static_outpost.go`
* silently skips any path segment starting with `_`, so those fonts would be
* missing from the embedded outpost build.
*/
outbase: MonoRepoRoot,
outdir: DistDirectory,
bundle: true,
write: true,

View File

@@ -16,7 +16,8 @@
*/
@import "#styles/global/vendor/patternfly.css" layer(vendor);
@import "#fonts/RedHat/faces.css" layer(vendor);
@import "@goauthentik/fonts/faces.css" layer(vendor);
@import "@goauthentik/fonts/icons.css" layer(vendor);
@import "#styles/global/theme/variables.css" layer(theme);
@import "#styles/global/reset/scrollbars.css" layer(reset);

View File

@@ -1,809 +0,0 @@
@font-face {
font-family: "pficon";
src:
url("#{$pf-global--fonticon-path}/pficon.woff2") format("woff2"),
url("#{$pf-global--fonticon-path}/pficon.woff") format("woff");
}
@mixin pf-icon-styles {
font-family: "pficon";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-style: normal;
font-variant: normal;
font-weight: normal;
// speak: none; // only necessary if not using the private unicode range (firstGlyph option)
text-decoration: none;
text-transform: none;
}
%pf-icon {
@include pf-icon-styles;
}
@function pf-icon-char($filename) {
$char: "";
@if $filename == add-circle-o {
$char: "\E61B";
}
@if $filename == ansible-tower {
$char: "\E950";
}
@if $filename == applications {
$char: "\E936";
}
@if $filename == arrow {
$char: "\E929";
}
@if $filename == asleep {
$char: "\E92E";
}
@if $filename == attention-bell {
$char: "\E951";
}
@if $filename == automation {
$char: "\E937";
}
@if $filename == bell {
$char: "\E952";
}
@if $filename == blueprint {
$char: "\E915";
}
@if $filename == build {
$char: "\E902";
}
@if $filename == builder-image {
$char: "\E800";
}
@if $filename == bundle {
$char: "\E918";
}
@if $filename == catalog {
$char: "\E953";
}
@if $filename == chat {
$char: "\E954";
}
@if $filename == close {
$char: "\E60B";
}
@if $filename == cloud-security {
$char: "\E903";
}
@if $filename == cloud-tenant {
$char: "\E904";
}
@if $filename == cluster {
$char: "\E620";
}
@if $filename == connected {
$char: "\E938";
}
@if $filename == container-node {
$char: "\E621";
}
@if $filename == cpu {
$char: "\E927";
}
@if $filename == critical-risk {
$char: "\E976";
}
@if $filename == data-processor {
$char: "\E97B";
}
@if $filename == data-sink {
$char: "\E978";
}
@if $filename == data-source {
$char: "\E979";
}
@if $filename == degraded {
$char: "\E91B";
}
@if $filename == disconnected {
$char: "\E955";
}
@if $filename == domain {
$char: "\E919";
}
@if $filename == edit {
$char: "\E60A";
}
@if $filename == enhancement {
$char: "\E93A";
}
@if $filename == enterprise {
$char: "\E906";
}
@if $filename == equalizer {
$char: "\E956";
}
@if $filename == error-circle-o {
$char: "\E926";
}
@if $filename == export {
$char: "\E616";
}
@if $filename == filter {
$char: "\E943";
}
@if $filename == flavor {
$char: "\E957";
}
@if $filename == folder-close {
$char: "\E607";
}
@if $filename == folder-open {
$char: "\E606";
}
@if $filename == globe-route {
$char: "\E958";
}
@if $filename == help {
$char: "\E605";
}
@if $filename == history {
$char: "\E617";
}
@if $filename == home {
$char: "\E618";
}
@if $filename == import {
$char: "\E615";
}
@if $filename == in-progress {
$char: "\E933";
}
@if $filename == info {
$char: "\E92B";
}
@if $filename == infrastructure {
$char: "\E93D";
}
@if $filename == integration {
$char: "\E948";
}
@if $filename == key {
$char: "\E924";
}
@if $filename == locked {
$char: "\E923";
}
@if $filename == maintenance {
$char: "\E932";
}
@if $filename == memory {
$char: "\E908";
}
@if $filename == messages {
$char: "\E603";
}
@if $filename == middleware {
$char: "\E917";
}
@if $filename == migration {
$char: "\E931";
}
@if $filename == module {
$char: "\E959";
}
@if $filename == monitoring {
$char: "\E95A";
}
@if $filename == namespaces {
$char: "\E95B";
}
@if $filename == network {
$char: "\E909";
}
@if $filename == new-process {
$char: "\E95C";
}
@if $filename == not-started {
$char: "\E95D";
}
@if $filename == off {
$char: "\E92D";
}
@if $filename == ok {
$char: "\E602";
}
@if $filename == on-running {
$char: "\E925";
}
@if $filename == on {
$char: "\E92C";
}
@if $filename == open-drawer-right {
$char: "\E977";
}
@if $filename == openshift {
$char: "\E95E";
}
@if $filename == openstack {
$char: "\E95F";
}
@if $filename == optimize {
$char: "\E93E";
}
@if $filename == orders {
$char: "\E93F";
}
@if $filename == os-image {
$char: "\E960";
}
@if $filename == package {
$char: "\E961";
}
@if $filename == panel-close {
$char: "\E962";
}
@if $filename == panel-open {
$char: "\E963";
}
@if $filename == paused {
$char: "\E92F";
}
@if $filename == pending {
$char: "\E964";
}
@if $filename == pficon-dragdrop {
$char: "\E965";
}
@if $filename == pficon-history {
$char: "\E966";
}
@if $filename == pficon-network-range {
$char: "\E967";
}
@if $filename == pficon-satellite {
$char: "\E968";
}
@if $filename == pficon-sort-common-asc {
$char: "\E94E";
}
@if $filename == pficon-sort-common-desc {
$char: "\E94F";
}
@if $filename == pficon-template {
$char: "\E94C";
}
@if $filename == pficon-vcenter {
$char: "\E969";
}
@if $filename == plugged {
$char: "\E96A";
}
@if $filename == port {
$char: "\E96B";
}
@if $filename == print {
$char: "\E612";
}
@if $filename == private {
$char: "\E914";
}
@if $filename == process-automation {
$char: "\E949";
}
@if $filename == project {
$char: "\E96C";
}
@if $filename == rebalance {
$char: "\E91C";
}
@if $filename == rebooting {
$char: "\E96D";
}
@if $filename == regions {
$char: "\E90A";
}
@if $filename == registry {
$char: "\E623";
}
@if $filename == remove2 {
$char: "\E96E";
}
@if $filename == replicator {
$char: "\E624";
}
@if $filename == repository {
$char: "\E90B";
}
@if $filename == resource-pool {
$char: "\E90C";
}
@if $filename == resources-almost-empty {
$char: "\E91D";
}
@if $filename == resources-almost-full {
$char: "\E912";
}
@if $filename == resources-empty {
$char: "\E96F";
}
@if $filename == resources-full {
$char: "\E913";
}
@if $filename == running {
$char: "\E970";
}
@if $filename == save {
$char: "\E601";
}
@if $filename == screen {
$char: "\E971";
}
@if $filename == security {
$char: "\E946";
}
@if $filename == server-group {
$char: "\E91A";
}
@if $filename == server {
$char: "\E90D";
}
@if $filename == service-catalog {
$char: "\E972";
}
@if $filename == service {
$char: "\E61E";
}
@if $filename == services {
$char: "\E947";
}
@if $filename == spinner {
$char: "\E973";
}
@if $filename == spinner2 {
$char: "\E613";
}
@if $filename == storage-domain {
$char: "\E90E";
}
@if $filename == task {
$char: "\E974";
}
@if $filename == tenant {
$char: "\E916";
}
@if $filename == thumb-tack {
$char: "\E920";
}
@if $filename == topology {
$char: "\E608";
}
@if $filename == trend-down {
$char: "\E900";
}
@if $filename == trend-up {
$char: "\E901";
}
@if $filename == unknown {
$char: "\E935";
}
@if $filename == unlocked {
$char: "\E922";
}
@if $filename == unplugged {
$char: "\E942";
}
@if $filename == user {
$char: "\E91E";
}
@if $filename == users {
$char: "\E91F";
}
@if $filename == virtual-machine {
$char: "\E90F";
}
@if $filename == volume {
$char: "\E910";
}
@if $filename == warning-triangle {
$char: "\E975";
}
@if $filename == zone {
$char: "\E911";
}
@return $char;
}
@mixin pf-icon($filename, $insert: before, $extend: true) {
&:#{$insert} {
@if $extend {
@extend %pf-icon;
} @else {
@include pf-icon-styles;
}
content: pf-icon-char($filename);
}
}
.pf-icon-add-circle-o {
@include pf-icon(add-circle-o);
}
.pf-icon-ansible-tower {
@include pf-icon(ansible-tower);
}
.pf-icon-applications {
@include pf-icon(applications);
}
.pf-icon-arrow {
@include pf-icon(arrow);
}
.pf-icon-asleep {
@include pf-icon(asleep);
}
.pf-icon-attention-bell {
@include pf-icon(attention-bell);
}
.pf-icon-automation {
@include pf-icon(automation);
}
.pf-icon-bell {
@include pf-icon(bell);
}
.pf-icon-blueprint {
@include pf-icon(blueprint);
}
.pf-icon-build {
@include pf-icon(build);
}
.pf-icon-builder-image {
@include pf-icon(builder-image);
}
.pf-icon-bundle {
@include pf-icon(bundle);
}
.pf-icon-catalog {
@include pf-icon(catalog);
}
.pf-icon-chat {
@include pf-icon(chat);
}
.pf-icon-close {
@include pf-icon(close);
}
.pf-icon-cloud-security {
@include pf-icon(cloud-security);
}
.pf-icon-cloud-tenant {
@include pf-icon(cloud-tenant);
}
.pf-icon-cluster {
@include pf-icon(cluster);
}
.pf-icon-connected {
@include pf-icon(connected);
}
.pf-icon-container-node {
@include pf-icon(container-node);
}
.pf-icon-cpu {
@include pf-icon(cpu);
}
.pf-icon-critical-risk {
@include pf-icon(critical-risk);
}
.pf-icon-data-processor {
@include pf-icon(data-processor);
}
.pf-icon-data-sink {
@include pf-icon(data-sink);
}
.pf-icon-data-source {
@include pf-icon(data-source);
}
.pf-icon-degraded {
@include pf-icon(degraded);
}
.pf-icon-disconnected {
@include pf-icon(disconnected);
}
.pf-icon-domain {
@include pf-icon(domain);
}
.pf-icon-edit {
@include pf-icon(edit);
}
.pf-icon-enhancement {
@include pf-icon(enhancement);
}
.pf-icon-enterprise {
@include pf-icon(enterprise);
}
.pf-icon-equalizer {
@include pf-icon(equalizer);
}
.pf-icon-error-circle-o {
@include pf-icon(error-circle-o);
}
.pf-icon-export {
@include pf-icon(export);
}
.pf-icon-filter {
@include pf-icon(filter);
}
.pf-icon-flavor {
@include pf-icon(flavor);
}
.pf-icon-folder-close {
@include pf-icon(folder-close);
}
.pf-icon-folder-open {
@include pf-icon(folder-open);
}
.pf-icon-globe-route {
@include pf-icon(globe-route);
}
.pf-icon-help {
@include pf-icon(help);
}
.pf-icon-history {
@include pf-icon(history);
}
.pf-icon-home {
@include pf-icon(home);
}
.pf-icon-import {
@include pf-icon(import);
}
.pf-icon-in-progress {
@include pf-icon(in-progress);
}
.pf-icon-info {
@include pf-icon(info);
}
.pf-icon-infrastructure {
@include pf-icon(infrastructure);
}
.pf-icon-integration {
@include pf-icon(integration);
}
.pf-icon-key {
@include pf-icon(key);
}
.pf-icon-locked {
@include pf-icon(locked);
}
.pf-icon-maintenance {
@include pf-icon(maintenance);
}
.pf-icon-memory {
@include pf-icon(memory);
}
.pf-icon-messages {
@include pf-icon(messages);
}
.pf-icon-middleware {
@include pf-icon(middleware);
}
.pf-icon-migration {
@include pf-icon(migration);
}
.pf-icon-module {
@include pf-icon(module);
}
.pf-icon-monitoring {
@include pf-icon(monitoring);
}
.pf-icon-namespaces {
@include pf-icon(namespaces);
}
.pf-icon-network {
@include pf-icon(network);
}
.pf-icon-new-process {
@include pf-icon(new-process);
}
.pf-icon-not-started {
@include pf-icon(not-started);
}
.pf-icon-off {
@include pf-icon(off);
}
.pf-icon-ok {
@include pf-icon(ok);
}
.pf-icon-on-running {
@include pf-icon(on-running);
}
.pf-icon-on {
@include pf-icon(on);
}
.pf-icon-open-drawer-right {
@include pf-icon(open-drawer-right);
}
.pf-icon-openshift {
@include pf-icon(openshift);
}
.pf-icon-openstack {
@include pf-icon(openstack);
}
.pf-icon-optimize {
@include pf-icon(optimize);
}
.pf-icon-orders {
@include pf-icon(orders);
}
.pf-icon-os-image {
@include pf-icon(os-image);
}
.pf-icon-package {
@include pf-icon(package);
}
.pf-icon-panel-close {
@include pf-icon(panel-close);
}
.pf-icon-panel-open {
@include pf-icon(panel-open);
}
.pf-icon-paused {
@include pf-icon(paused);
}
.pf-icon-pending {
@include pf-icon(pending);
}
.pf-icon-pficon-dragdrop {
@include pf-icon(pficon-dragdrop);
}
.pf-icon-pficon-history {
@include pf-icon(pficon-history);
}
.pf-icon-pficon-network-range {
@include pf-icon(pficon-network-range);
}
.pf-icon-pficon-satellite {
@include pf-icon(pficon-satellite);
}
.pf-icon-pficon-sort-common-asc {
@include pf-icon(pficon-sort-common-asc);
}
.pf-icon-pficon-sort-common-desc {
@include pf-icon(pficon-sort-common-desc);
}
.pf-icon-pficon-template {
@include pf-icon(pficon-template);
}
.pf-icon-pficon-vcenter {
@include pf-icon(pficon-vcenter);
}
.pf-icon-plugged {
@include pf-icon(plugged);
}
.pf-icon-port {
@include pf-icon(port);
}
.pf-icon-print {
@include pf-icon(print);
}
.pf-icon-private {
@include pf-icon(private);
}
.pf-icon-process-automation {
@include pf-icon(process-automation);
}
.pf-icon-project {
@include pf-icon(project);
}
.pf-icon-rebalance {
@include pf-icon(rebalance);
}
.pf-icon-rebooting {
@include pf-icon(rebooting);
}
.pf-icon-regions {
@include pf-icon(regions);
}
.pf-icon-registry {
@include pf-icon(registry);
}
.pf-icon-remove2 {
@include pf-icon(remove2);
}
.pf-icon-replicator {
@include pf-icon(replicator);
}
.pf-icon-repository {
@include pf-icon(repository);
}
.pf-icon-resource-pool {
@include pf-icon(resource-pool);
}
.pf-icon-resources-almost-empty {
@include pf-icon(resources-almost-empty);
}
.pf-icon-resources-almost-full {
@include pf-icon(resources-almost-full);
}
.pf-icon-resources-empty {
@include pf-icon(resources-empty);
}
.pf-icon-resources-full {
@include pf-icon(resources-full);
}
.pf-icon-running {
@include pf-icon(running);
}
.pf-icon-save {
@include pf-icon(save);
}
.pf-icon-screen {
@include pf-icon(screen);
}
.pf-icon-security {
@include pf-icon(security);
}
.pf-icon-server-group {
@include pf-icon(server-group);
}
.pf-icon-server {
@include pf-icon(server);
}
.pf-icon-service-catalog {
@include pf-icon(service-catalog);
}
.pf-icon-service {
@include pf-icon(service);
}
.pf-icon-services {
@include pf-icon(services);
}
.pf-icon-spinner {
@include pf-icon(spinner);
}
.pf-icon-spinner2 {
@include pf-icon(spinner2);
}
.pf-icon-storage-domain {
@include pf-icon(storage-domain);
}
.pf-icon-task {
@include pf-icon(task);
}
.pf-icon-tenant {
@include pf-icon(tenant);
}
.pf-icon-thumb-tack {
@include pf-icon(thumb-tack);
}
.pf-icon-topology {
@include pf-icon(topology);
}
.pf-icon-trend-down {
@include pf-icon(trend-down);
}
.pf-icon-trend-up {
@include pf-icon(trend-up);
}
.pf-icon-unknown {
@include pf-icon(unknown);
}
.pf-icon-unlocked {
@include pf-icon(unlocked);
}
.pf-icon-unplugged {
@include pf-icon(unplugged);
}
.pf-icon-user {
@include pf-icon(user);
}
.pf-icon-users {
@include pf-icon(users);
}
.pf-icon-virtual-machine {
@include pf-icon(virtual-machine);
}
.pf-icon-volume {
@include pf-icon(volume);
}
.pf-icon-warning-triangle {
@include pf-icon(warning-triangle);
}
.pf-icon-zone {
@include pf-icon(zone);
}

View File

@@ -4175,14 +4175,8 @@
width: auto;
}
@font-face {
font-family: "Font Awesome 5 Free";
font-style: normal;
font-weight: 900;
src:
url("./assets/webfonts/fa-solid-900.woff2") format("woff2"),
url("./assets/webfonts/fa-solid-900.woff") format("woff");
}
/* The "Font Awesome 5 Free" @font-face lives in @goauthentik/fonts/icons.css,
* imported by the entrypoints. Only the icon classes are vendored here. */
.fa,
.fas {
font-family: "Font Awesome 5 Free";

View File

@@ -1,9 +1,5 @@
@font-face {
font-family: "pficon";
src:
url("./assets/pficon/pficon.woff2") format("woff2"),
url("./assets/pficon/pficon.woff") format("woff");
}
/* The "pficon" @font-face lives in @goauthentik/fonts/icons.css, imported by
* the entrypoints. Only the icon classes are vendored here. */
.pf-icon-zone:before,
.pf-icon-warning-triangle:before,
.pf-icon-volume:before,

View File

@@ -18,7 +18,8 @@
*/
@import "#styles/global/vendor/patternfly.css" layer(vendor);
@import "#fonts/RedHat/faces.css" layer(vendor);
@import "@goauthentik/fonts/faces.css" layer(vendor);
@import "@goauthentik/fonts/icons.css" layer(vendor);
@import "#styles/global/theme/variables.css" layer(theme);
@import "#styles/global/reset/scrollbars.css" layer(reset);