icon |
---|
css3-alt |
{% hint style="info" %} This page is a must-read. Even if you plan to redesign the pages at the component level, you should at least understand how to remove the default CSS styles. {% endhint %}
When you inspect the DOM in Storybook, you’ll notice most elements have at least a couple of classes applied to them:
- A class starting with
kc
, for examplekcLabelClass
. - One or more classes starting with
pf-
, for examplepf-c-form__label
,pf-c-form__label-text
.
Inspecting an input label on the login page
Classes beginning with kc
don’t have any styles applied to them by default. Their sole purpose is to serve as selectors for your custom styles.
Classes beginning with pf-
are Patternfly classes. Patternfly is a CSS framework created by RedHat, similar to Bootstrap, that the Keycloak team uses to build all of its UIs.
What you’ll want to do is partially or completely remove the Patternfly styles and then apply your custom ones.
{% hint style="danger" %}
Do not edit any file in the public/keycloakify-dev-resources
directory. These files are used by Storybook to simulate a Keycloak environment during development, and they aren't part of your actual theme.
{% endhint %}
To apply your custom CSS style, use the kc
classes to target the components.
{% code title="src/login/main.css" %}
.kcLabelClass {
border: 3px solid red;
}
{% endcode %}
{% tabs %} {% tab title="React" %}
import "./main.css";
// ...
{% endtab %}
{% tab title="Svelte" %}
<script lang="ts">
import "./main.css";
import Template from '@keycloakify/svelte/login/Template.svelte';
...
{% endtab %}
{% tab title="Angular" %}
import "./main.css";
import { getDefaultPageComponent, type KcPage } from '@keycloakify/angular/login';
// ...
{% endtab %} {% endtabs %}
This is the result:
A red border has been applied to every input label
Having different stylesheets for the login page, the register page, etc...
In this example, we use a global stylesheet that applies to all pages of the login theme. However, you can also assign different stylesheets on a page-by-page basis (e.g., one for the login page, another for the registration page, etc.).
If you plan to customize the pages at the component level using React, Angular, or Svelte, you can skip this section. Once you've learned about the npx keycloakify eject-page
command, it will be straightforward to import different stylesheets for different ejected pages, and no additional instructions will be necessary.
However, if you plan to customize the theme using only CSS without ejecting the pages, the process may not be immediately clear.
You need to be able to load different stylesheet based on the value of kcContext.pageId
.
Below is a snippet of React code demonstrating how you can apply separate stylesheets for different pages:
{% code title="src/login/KcPage.tsx" %}
import {
Suspense,
lazy,
useMemo
} from "react";
export default function KcPage(props: { kcContext: KcContext }) {
const { kcContext } = props;
const { i18n } = useI18n({ kcContext });
const classes = useCustomStyles(kcContext);
return (
<Suspense>
{(() => {
switch (kcContext.pageId) {
default:
return (
<DefaultPage
kcContext={kcContext}
i18n={i18n}
classes={classes}
Template={Template}
doUseDefaultCss={true}
UserProfileFormFields={UserProfileFormFields}
doMakeUserConfirmPassword={doMakeUserConfirmPassword}
/>
);
}
})()}
</Suspense>
);
}
function useCustomStyles(kcContext: KcContext) {
return useMemo(() => {
// Your stylesheet that applies to all pages.
import("./main.css");
let classes: { [key in ClassKey]?: string } = {
// Classes that apply to all pages
};
switch (kcContext.pageId) {
case "login.ftl":
// A login page-specific stylesheet.
import("./pages/login.css");
classes = {
...classes,
// Classes that apply only to the login page
};
break;
case "register.ftl":
// A register page-specific stylesheet.
import("./pages/register.css");
classes = {
...classes,
// Classes that apply only to the register page
};
break;
// ...
}
return classes;
}, []);
}
{% endcode %}
If this code doesn’t make much sense, you can watch this video tutorial where this approach is demonstrated in practice.
Using Tailwind
Of course, you can use Tailwind in the usual way by applying utility classes to the React/Angular/Svelte components.
But note that you can also use Tailwind without modifying the page structure by using the @apply
directive. This is shown in this page.
Using Bootstrap or some other CSS framework
If you want to use Bootstrap or another CSS framework that provides standardized classes, you might wonder how to apply these classes.
Here’s an example with Bootstrap:
yarn add bootstrap
import "bootstrap/dist/css/bootstrap.min.css";
import { Suspense, lazy } from "react";
import type { ClassKey } from "keycloakify/login";
import type { KcContext } from "./KcContext";
import { useI18n } from "./i18n";
import DefaultPage from "keycloakify/login/DefaultPage";
import Template from "keycloakify/login/Template";
const UserProfileFormFields = lazy(
() => import("keycloakify/login/UserProfileFormFields")
);
const doMakeUserConfirmPassword = true;
export default function KcPage(props: { kcContext: KcContext }) {
const { kcContext } = props;
const { i18n } = useI18n({ kcContext });
return (
<Suspense>
{(() => {
switch (kcContext.pageId) {
default:
return (
<DefaultPage
kcContext={kcContext}
i18n={i18n}
classes={classes}
Template={Template}
doUseDefaultCss={true}
UserProfileFormFields={UserProfileFormFields}
doMakeUserConfirmPassword={doMakeUserConfirmPassword}
/>
);
}
})()}
</Suspense>
);
}
const classes = {
kcLabelClass: "form-label col-form-label",
} satisfies { [key in ClassKey]?: string };
By doing this, you replace the Patternfly classes pf-c-form__label pf-c-form__label-text
with the Bootstrap classes form-label col-form-label
.
In practice, if you inspect the element in your browser, the form label that was previously rendered as:
<label for="username" class="kcLabelClass pf-c-form__label pf-c-form__label-text">
Is now rendered as:
<label for="username" class="kcLabelClass form-label col-form-label">
Let’s consider the Sign In button on the login page:
The default look of the "Sign In" button
Here’s how we can “unstyle” it so that we can apply custom styles without worrying about conflicts from the default Patternfly styles:
How the "Sign In" button looks when all Patternfly styles are removed
To remove the Patternfly styles, inspect the button in your browser:
Inspecting the CSS classes applied to the "Sign In" button
We can see which Patternfly classes are applied by default to the standardized element:
kcButtonClass
->pf-c-button
kcButtonPrimaryClass
->pf-m-primary
andlong-pf-btn
kcButtonBlockClass
->pf-m-block
kcButtonLargeClass
->btn-lg
Since we want to remove all the default styles, we can tell Keycloakify to remove all classes assigned by default to these kc
classes:
{% tabs %} {% tab title="React" %}
// ...
const classes = {
kcButtonClass: "",
kcButtonPrimaryClass: "",
kcButtonBlockClass: "",
kcButtonLargeClass: ""
} satisfies { [key in ClassKey]?: string };
{% endtab %}
{% tab title="Angular" %}
const classes = {
kcButtonClass: "",
kcButtonPrimaryClass: "",
kcButtonBlockClass: "",
kcButtonLargeClass: ""
} satisfies { [key in ClassKey]?: string };
{% endtab %}
{% tab title="Svelte" %}
<script lang="ts">
// ...
const classes = {
kcButtonClass: "",
kcButtonPrimaryClass: "",
kcButtonBlockClass: "",
kcButtonLargeClass: ""
} satisfies { [key in ClassKey]?: string };
{% endtab %} {% endtabs %}
After saving these changes, here’s the result:
All Patternfly classes have been stripped out, restoring the button to its default HTML style.
Now you can freely apply your own custom button styles without Patternfly interfering.
Button with custom style
Reveal custom CSS code for this custom button
{% code title="src/login/main.css" %}
.kcButtonClass {
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
color: #ffffff;
background: linear-gradient(45deg, #6a11cb, #2575fc);
border: none;
border-radius: 25px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.2s, box-shadow 0.2s;
cursor: pointer;
width: 100%;
}
.kcButtonClass:hover {
transform: translateY(-2px);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}
.kcButtonClass:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.kcButtonClass:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.5);
}
.kcButtonClass:disabled {
background: linear-gradient(45deg, #aaa, #ccc);
color: #666;
cursor: not-allowed;
box-shadow: none;
transform: none;
opacity: 0.6;
}
.kcButtonClass:disabled:hover,
.kcButtonClass:disabled:active {
transform: none;
box-shadow: none;
}
{% endcode %}
You may prefer to remove all Patternfly styles altogether and start fresh.
The login page completely unstyled (doUseDefaultCss set to false).
A benefit of this approach is that not only are all pf-
classes stripped out in one go, but the global Patternfly stylesheet isn’t even loaded.
{% tabs %} {% tab title="React" %}
// ...
<DefaultPage
kcContext={kcContext}
i18n={i18n}
classes={classes}
Template={Template}
doUseDefaultCss={false}
UserProfileFormFields={UserProfileFormFields}
doMakeUserConfirmPassword={doMakeUserConfirmPassword}
/>
{% endtab %}
{% tab title="Svelte" %}
{#await page() then { default: Page }}
<Page
{kcContext}
i18n={i18n}
{classes}
{Template}
{UserProfileFormFields}
doUseDefaultCss={false}
{doMakeUserConfirmPassword}
></Page>
{/await}
{% endtab %}
{% tab title="Angular" %}
const classes = {} satisfies { [key in ClassKey]?: string };
const doUseDefaultCss = false;
const doMakeUserConfirmPassword = true;
export async function getKcPage(pageId: KcContext['pageId']): Promise<KcPage> {
switch (pageId) {
default:
return {
PageComponent: await getDefaultPageComponent(pageId),
TemplateComponent,
UserProfileFormFieldsComponent,
doMakeUserConfirmPassword,
doUseDefaultCss,
classes,
};
}
}
{% endtab %} {% endtabs %}
A common scenario is using npx keycloakify eject-page
to customize only certain pages of the login UI in depth.
For pages you've ejected, you’ll likely want to disable all default styles; however, you might prefer to keep the Patternfly styles on the pages you haven't redesigned.
Below is an example where login.ftl
has been ejected and its default styles are disabled, while the other pages remain styled:
{% tabs %} {% tab title="React" %}
switch (kcContext.pageId) {
case "login.ftl":
return (
<Login
{...{ kcContext, i18n, classes }}
Template={Template}
doUseDefaultCss={false}
/>
);
default:
return (
<DefaultPage
kcContext={kcContext}
i18n={i18n}
classes={classes}
Template={Template}
doUseDefaultCss={true}
UserProfileFormFields={UserProfileFormFields}
doMakeUserConfirmPassword={doMakeUserConfirmPassword}
/>
);
}
{% endtab %}
{% tab title="Angular" %}
switch (pageId) {
case 'login.ftl':
return {
PageComponent: (await import('./pages/login/login.component')).LoginComponent,
TemplateComponent,
UserProfileFormFieldsComponent,
doMakeUserConfirmPassword,
doUseDefaultCss: false,
classes,
};
default:
return {
PageComponent: await getDefaultPageComponent(pageId),
TemplateComponent,
UserProfileFormFieldsComponent,
doMakeUserConfirmPassword,
doUseDefaultCss: true,
classes,
};
}
{% endtab %}
{% tab title="Svelte" %}
<script lang="ts">
// ...
const doUseDefaultCss = (()=>{
switch(kcContext.pageId){
case "login.ftl": return false;
default: return true;
}
})();
const page = async (): Promise<{ default?: Component<any> }> => {
switch (kcContext.pageId) {
case 'login.ftl':
return import('./pages/Login.svelte"');
default:
return import('@keycloakify/svelte/login/DefaultPage.svelte');
}
};
</script>
{#await page() then { default: Page }}
<Page
{kcContext}
i18n={i18n}
{classes}
{Template}
{UserProfileFormFields}
{doUseDefaultCss}
{doMakeUserConfirmPassword}
></Page>
{/await}
{% endtab %} {% endtabs %}
If you have ejected some pages with npx keycloakify eject-page
and disabled the default styles by setting doUseDefaultCss
to false
, you might wonder if you need to keep the kcClsx
in the pages. For example:
<input
tabIndex={7}
disabled={isLoginButtonDisabled}
className={kcClsx(
"kcButtonClass",
"kcButtonPrimaryClass",
"kcButtonBlockClass",
"kcButtonLargeClass"
)}
name="login"
id="kc-login"
type="submit"
value={msgStr("doLogIn")}
/>
The short answer is no; feel free to remove them.
Just be aware that if you have defined any custom CSS targeting those classes (for example .kcButtonClass { /* ... */ }
), they will no longer apply once you remove the classes.