Examples
Basic page components
A page will typically contain the following components:
- A
<Page>
with aheader
that often contains a masthead- Mastheads contain the
<PageToggleButton>
, a<MastheadMain>
that contains a<MastheadBrand>
, and the page's header toolbar within<MastheadContent>
.
- Mastheads contain the
- 1 or more
<PageSidebarBody>
components inside<PageSidebar>
for vertical navigation or other sidebar content - 1 or more
<PageSection>
components
Vertical navigation
To add a vertical sidebar to a <Page>
, pass a <PageSidebar>
component into the sidebar
property. To render navigation in the sidebar, pass a <PageSidebarBody>
component to <PageSidebar>
.
The isSidebarOpen
property helps facilitate the opening and closing of the sidebar and should be 'true' when the sidebar is visible.
Multiple sidebar body
You can have multiple <PageSidebarBody>
components inside the <PageSidebar>
for more customization. You can modify the <PageSidebarBody>
further by passing the following properties:
usePageInsets
will modify the component's insets to match page insetsisFilled={true}
will cause the component to grow to fill the available vertical spaceisFilled={false}
will cause the component to not grow to fill the available vertical space
By default, the last <PageSidebarBody>
will grow to fill the available vertical space. This can be changed by passing isFilled={false}
as demonstrated in the following example.
Horizontal navigation
To add horizontal navigation to the top of a <Page>
, add the navigation inside of a <ToolbarItem>
in the <Toolbar>
that is passed to the <MastheadContent>
of the <Masthead>
.
Tertiary navigation (deprecated)
Horizontal sub-navigation is now recommended instead of tertiary-level navigation.
Tertiary navigation allows you to add an additional navigation menu alongside vertical or horizontal navigation. To create tertiary navigation, use the tertiaryNav
property. The following example passes tertiaryNav="Navigation"
into a <Page>
component.
Uncontrolled navigation
When the isManagedSidebar
property is true, it manages the sidebar open/close state, removing the need to pass both isSidebarOpen
into the <PageSidebar>
and onSidebarToggle
into the <PageToggleButton>
.
Filled page sections
By default, the last page section is "filled", meaning it fills the available vertical space of a page.
To change the default behavior, use the isFilled
property. To make other page sections "filled", set isFilled
equal to "true". To disable the last page section from being "filled", set isFilled
equal to "false".
Main section padding
To adjust the padding of a <PageSection>
, you can pass in different values to the padding
property. These values should be aligned to a specific breakpoint: 'default', 'sm', 'md', 'lg', 'xl', and '2xl'. Each breakpoint passed into the property should be given a value of either ‘padding’ or ‘noPadding’.
As the page's viewport width increases, breakpoints inherit the padding behavior of the previous breakpoint. For example, padding that is set on 'lg' also applies to 'xl' and '2xl'.
To remove padding entirely, pass 'noPadding' to the default
breakpoint. For example, the second section in this example passes in padding={{ default: 'noPadding' }}
. Since no specific breakpoints are mentioned, every breakpoint will have 'noPadding'.
To add padding at specific breakpoints, pass in "padding" at those breakpoints. For example, the third section in this example passes in padding={{ default: 'noPadding', md: 'padding' }}
. At 'md', 'lg', 'xl', and '2xl' breakpoints, the default value will be overwritten, and padding will be added.
To remove padding at specific breakpoints, pass in 'noPadding' at those breakpoints. For example, the fourth section in this example passes in padding={{ md: 'noPadding' }}
, which means that 'md', 'lg' 'xl', and '2xl' breakpoints will have noPadding
.
Main section variations
This example shows all types of page sections.
type="nav"
for tertiary navigation type="tabs"
for tabs type
prop or type="default"
for main sections type="wizard"
for wizards Group section
To group page content sections, add 1 or more <PageGroup>
components to a <Page>
.
The following example adds a group containing <PageNavigation>
, <PageBreadcrumb>
, and <PageSection>
components.
To add additional components and information to a group, you may use the following properties:
- To indicate that a breadcrumb should be in a group, use
isBreadcrumbGrouped
. - To indicate that tertiary navigation should be in a group, use
isTertiaryNavGrouped
. - To specify additional group content, use
additionalGroupedContent
.
Centered section
By default, a page section spans the width of the page. To reduce the width of a section, use the isWidthLimited
property. To center align width-limited page sections, use the isCenterAligned
property. When the main content area of a page is wider than the value of a centered, width-limited page section's --pf-v5-c-page--section--m-limit-width--MaxWidth
custom property, the section will automatically be centered.
The content in this example is placed in a card to better illustrate how the section behaves when it is centered, but a card is not required to center a page section.
--pf-v5-c-page--section--m-limit-width--MaxWidth
, the section will be centered in the main section. The content in this example is placed in a card to better illustrate how the section behaves when it is centered. A card is not required to center a page section.
Props
Page
Name | Type | Default | Description |
---|---|---|---|
additionalGroupedContent | React.ReactNode | Additional content of the group | |
breadcrumb | React.ReactNode | Breadcrumb component for the page | |
breadcrumbProps | PageBreadcrumbProps | Additional props of the breadcrumb | |
children | React.ReactNode | Content rendered inside the main section of the page layout (e.g. <PageSection />) | |
className | string | Additional classes added to the page layout | |
defaultManagedSidebarIsOpen | boolean | true | If true, the managed sidebar is initially open for desktop view |
drawerDefaultSize | string | Sets default drawer size | |
drawerMaxSize | string | Sets the maximum drawer size | |
drawerMinSize | string | Sets the minimum drawer size | |
getBreakpoint | (width: number | null) => 'default' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | getBreakpoint | The page resize observer uses the breakpoints returned from this function when adding the pf-m-breakpoint-[default|sm|md|lg|xl|2xl] class You can override the default getBreakpoint function to return breakpoints at different sizes than the default You can view the default getBreakpoint function here: https://github.com/patternfly/patternfly-react/blob/main/packages/react-core/src/helpers/util.ts |
getVerticalBreakpoint | (height: number | null) => 'default' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | getVerticalBreakpoint | The page resize observer uses the breakpoints returned from this function when adding the pf-m-breakpoint-[default|sm|md|lg|xl|2xl] class You can override the default getVerticalBreakpoint function to return breakpoints at different sizes than the default You can view the default getVerticalBreakpoint function here: https://github.com/patternfly/patternfly-react/blob/main/packages/react-core/src/helpers/util.ts |
groupProps | PageGroupProps | Additional props of the group | |
header | React.ReactNode | Header component (e.g. <Masthead />) | |
isBreadcrumbGrouped | boolean | Flag indicating if the breadcrumb should be in a group | |
isBreadcrumbWidthLimited | boolean | false | Flag indicating if breadcrumb width should be limited |
isManagedSidebar | boolean | false | If true, manages the sidebar open/close state and there is no need to pass the isSidebarOpen boolean into the sidebar component or add a callback onSidebarToggle function into the Masthead component |
isNotificationDrawerExpanded | boolean | false | Flag indicating Notification drawer in expanded |
isTertiaryNavGrouped | boolean | Flag indicating if the tertiaryNav should be in a group | |
isTertiaryNavWidthLimited | boolean | Flag indicating if tertiary nav width should be limited | |
mainAriaLabel | string | Accessible label, can be used to name main section | |
mainComponent | 'main' | 'div' | 'main' | HTML component used as main component of the page. Defaults to 'main', only pass in 'div' if another 'main' element already exists. |
mainContainerId | string | an id to use for the [role="main"] element | |
mainTabIndex | number | null | -1 | tabIndex to use for the [role="main"] element, null to unset it |
notificationDrawer | React.ReactNode | Notification drawer component for an optional notification drawer (e.g. <NotificationDrawer />) | |
onNotificationDrawerExpand | (event: KeyboardEvent | React.MouseEvent | React.TransitionEvent) => void | () => null | Callback when notification drawer panel is finished expanding. |
onPageResize | ((event: MouseEvent | TouchEvent | React.KeyboardEvent, object: any) => void) | null | Can add callback to be notified when resize occurs, for example to set the sidebar isSidebarOpen prop to false for a width < 768px Returns object { mobileView: boolean, windowSize: number } | |
role | string | Sets the value for role on the <main> element | |
sidebar | React.ReactNode | Sidebar component for a side nav (e.g. <PageSidebar />) | |
skipToContent | React.ReactElement | Skip to content component for the page | |
tertiaryNav | React.ReactNode | Tertiary nav component for the page |
PageSidebar
Name | Type | Default | Description |
---|---|---|---|
children | React.ReactNode | Content rendered inside the page sidebar (e.g. <PageSidebarBody /> | |
className | string | '' | Additional classes added to the page sidebar |
id | string | 'page-sidebar' | Sidebar id |
isManagedSidebar | boolean | If true, manages the sidebar open/close state and there is no need to pass the isSidebarOpen boolean into the sidebar component or add a callback onSidebarToggle function into the PageHeader component | |
isSidebarOpen | boolean | true | Programmatically manage if the sidebar is shown, if isManagedSidebar is set to true in the Page component, this prop is managed |
theme | 'dark' | 'light' | 'dark' | Indicates the color scheme of the sidebar |
PageSidebarBody
Name | Type | Default | Description |
---|---|---|---|
children | React.ReactNode | Content rendered inside the page sidebar body | |
className | string | Additional classes added to the page sidebar body | |
isFilled | boolean | Flag indicating that the page sidebar body should fill the available vertical space. | |
usePageInsets | boolean | Flag indicating that the page sidebar body should use page insets. |
PageSection
Name | Type | Default | Description |
---|---|---|---|
aria-label | string | Adds an accessible name to the page section. Required when the hasOverflowScroll prop is set to true. This prop should also be passed in if a heading is not being used to describe the content of the page section. | |
children | React.ReactNode | Content rendered inside the section | |
className | string | '' | Additional classes added to the section |
component | unknown | 'section' | Sets the base component to render. Defaults to section |
hasOverflowScroll | boolean | false | Flag indicating if the PageSection has a scrolling overflow |
hasShadowBottom | boolean | false | Modifier indicating if PageSection should have a shadow at the bottom |
hasShadowTop | boolean | false | Modifier indicating if PageSection should have a shadow at the top |
isCenterAligned | boolean | false | Flag indicating if the section content is center aligned. isWidthLimited must be set for this to work |
isFilled | boolean | Enables the page section to fill the available vertical space | |
isWidthLimited | boolean | false | Limits the width of the section |
padding | { default?: 'padding' | 'noPadding'; sm?: 'padding' | 'noPadding'; md?: 'padding' | 'noPadding'; lg?: 'padding' | 'noPadding'; xl?: 'padding' | 'noPadding'; '2xl'?: 'padding' | 'noPadding'; } | Padding at various breakpoints. | |
stickyOnBreakpoint | { default?: 'top' | 'bottom'; sm?: 'top' | 'bottom'; md?: 'top' | 'bottom'; lg?: 'top' | 'bottom'; xl?: 'top' | 'bottom'; '2xl'?: 'top' | 'bottom'; } | Modifier indicating if the PageBreadcrumb is sticky to the top or bottom at various breakpoints | |
type | 'default' | 'nav' | 'subnav' | 'breadcrumb' | 'tabs' | 'wizard' | 'default' | Section type variant |
variant | 'default' | 'light' | 'dark' | 'darker' | 'default' | Section background color variant |
PageGroup
Name | Type | Default | Description |
---|---|---|---|
aria-label | string | Adds an accessible name to the page group when the hasOverflowScroll prop is set to true. | |
children | React.ReactNode | Content rendered inside of the PageGroup | |
className | string | '' | Additional classes to apply to the PageGroup |
hasOverflowScroll | boolean | false | Flag indicating if the PageGroup has a scrolling overflow |
hasShadowBottom | boolean | false | Modifier indicating if PageGroup should have a shadow at the bottom |
hasShadowTop | boolean | false | Modifier indicating if PageGroup should have a shadow at the top |
stickyOnBreakpoint | { default?: 'top' | 'bottom'; sm?: 'top' | 'bottom'; md?: 'top' | 'bottom'; lg?: 'top' | 'bottom'; xl?: 'top' | 'bottom'; '2xl'?: 'top' | 'bottom'; } | Modifier indicating if the PageBreadcrumb is sticky to the top or bottom at various breakpoints |
PageBreadcrumb
Name | Type | Default | Description |
---|---|---|---|
aria-label | string | Adds an accessible name to the breadcrumb section. Required when the hasOverflowScroll prop is set to true. | |
children | React.ReactNode | Content rendered inside of the PageBreadcrumb | |
className | string | '' | Additional classes to apply to the PageBreadcrumb |
hasOverflowScroll | boolean | false | Flag indicating if the PageBreadcrumb has a scrolling overflow |
hasShadowBottom | boolean | false | Flag indicating if PageBreadcrumb should have a shadow at the bottom |
hasShadowTop | boolean | false | Flag indicating if PageBreadcrumb should have a shadow at the top |
isWidthLimited | boolean | Limits the width of the breadcrumb | |
stickyOnBreakpoint | { default?: 'top' | 'bottom'; sm?: 'top' | 'bottom'; md?: 'top' | 'bottom'; lg?: 'top' | 'bottom'; xl?: 'top' | 'bottom'; '2xl'?: 'top' | 'bottom'; } | Modifier indicating if the PageBreadcrumb is sticky to the top or bottom at various breakpoints |
PageNavigation
Name | Type | Default | Description |
---|---|---|---|
aria-label | string | Adds an accessible name to the page navigation when the hasOverflowScroll prop is set to true. | |
children | React.ReactNode | Content rendered inside of the PageNavigation | |
className | string | '' | Additional classes to apply to the PageNavigation |
hasOverflowScroll | boolean | false | Flag indicating if the PageNavigation has a scrolling overflow |
hasShadowBottom | boolean | false | Flag indicating if PageNavigation should have a shadow at the bottom |
hasShadowTop | boolean | false | Flag indicating if PageNavigation should have a shadow at the top |
isWidthLimited | boolean | Limits the width of the PageNavigation | |
stickyOnBreakpoint | { default?: 'top' | 'bottom'; sm?: 'top' | 'bottom'; md?: 'top' | 'bottom'; lg?: 'top' | 'bottom'; xl?: 'top' | 'bottom'; '2xl'?: 'top' | 'bottom'; } | Modifier indicating if the PageBreadcrumb is sticky to the top or bottom at various breakpoints |
PageToggleButton
Name | Type | Default | Description |
---|---|---|---|
children | React.ReactNode | Content of the page toggle button | |
id | string | 'nav-toggle' | Button id |
isSidebarOpen | boolean | true | True if the sidebar is shown |
onSidebarToggle | () => void | () => undefined as any | Callback function to handle the sidebar toggle button, managed by the Page component if the Page isManagedSidebar prop is set to true |
CSS variables
Expand or collapse column | Selector | Variable | Value | |
---|---|---|---|---|
.pf-v5-c-page__sidebar.pf-m-light | --pf-v5-global--Color--100 | #151515 | ||
--pf-v5-global--Color--100 --pf-v5-global--Color--dark-100 $pf-v5-global--Color--dark-100 $pf-v5-color-black-900 #151515 | ||||
.pf-v5-c-page__sidebar.pf-m-light | --pf-v5-global--Color--200 | #6a6e73 | ||
--pf-v5-global--Color--200 --pf-v5-global--Color--dark-200 $pf-v5-global--Color--dark-200 $pf-v5-color-black-600 #6a6e73 | ||||
.pf-v5-c-page__sidebar.pf-m-light | --pf-v5-global--BorderColor--100 | #d2d2d2 | ||
--pf-v5-global--BorderColor--100 --pf-v5-global--BorderColor--dark-100 $pf-v5-global--BorderColor--dark-100 $pf-v5-color-black-300 #d2d2d2 | ||||
.pf-v5-c-page__sidebar.pf-m-light | --pf-v5-global--primary-color--100 | #06c | ||
--pf-v5-global--primary-color--100 --pf-v5-global--primary-color--dark-100 $pf-v5-global--primary-color--dark-100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-page__sidebar.pf-m-light | --pf-v5-global--link--Color | #06c | ||
--pf-v5-global--link--Color --pf-v5-global--link--Color--dark $pf-v5-global--link--Color--dark $pf-v5-global--primary-color--100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-page__sidebar.pf-m-light | --pf-v5-global--link--Color--hover | #004080 | ||
--pf-v5-global--link--Color--hover --pf-v5-global--link--Color--dark--hover $pf-v5-global--link--Color--dark--hover $pf-v5-global--primary-color--200 $pf-v5-color-blue-500 #004080 | ||||
.pf-v5-c-page__sidebar.pf-m-light | --pf-v5-global--BackgroundColor--100 | #fff | ||
--pf-v5-global--BackgroundColor--100 --pf-v5-global--BackgroundColor--light-100 $pf-v5-global--BackgroundColor--light-100 $pf-v5-color-white #fff | ||||
.pf-v5-c-page__sidebar.pf-m-light | --pf-v5-global--icon--Color--light | #6a6e73 | ||
--pf-v5-global--icon--Color--light --pf-v5-global--icon--Color--light--dark $pf-v5-global--icon--Color--light--dark $pf-v5-color-black-600 #6a6e73 | ||||
.pf-v5-c-page__sidebar.pf-m-light | --pf-v5-global--icon--Color--dark | #151515 | ||
--pf-v5-global--icon--Color--dark --pf-v5-global--icon--Color--dark--dark $pf-v5-global--icon--Color--dark--dark $pf-v5-color-black-900 #151515 | ||||
.pf-v5-c-page__sidebar.pf-m-light | --pf-v5-c-page__sidebar--BackgroundColor | #fff | ||
--pf-v5-c-page__sidebar--BackgroundColor --pf-v5-c-page__sidebar--m-light--BackgroundColor --pf-v5-global--BackgroundColor--light-100 $pf-v5-global--BackgroundColor--light-100 $pf-v5-color-white #fff | ||||
.pf-v5-c-page__main-section[class*=pf-m-dark-] | --pf-v5-global--Color--100 | #fff | ||
--pf-v5-global--Color--100 --pf-v5-global--Color--light-100 $pf-v5-global--Color--light-100 $pf-v5-color-white #fff | ||||
.pf-v5-c-page__main-section[class*=pf-m-dark-] | --pf-v5-global--Color--200 | #f0f0f0 | ||
--pf-v5-global--Color--200 --pf-v5-global--Color--light-200 $pf-v5-global--Color--light-200 $pf-v5-color-black-200 #f0f0f0 | ||||
.pf-v5-c-page__main-section[class*=pf-m-dark-] | --pf-v5-global--BorderColor--100 | #b8bbbe | ||
--pf-v5-global--BorderColor--100 --pf-v5-global--BorderColor--light-100 $pf-v5-global--BorderColor--light-100 $pf-v5-color-black-400 #b8bbbe | ||||
.pf-v5-c-page__main-section[class*=pf-m-dark-] | --pf-v5-global--primary-color--100 | #73bcf7 | ||
--pf-v5-global--primary-color--100 --pf-v5-global--primary-color--light-100 $pf-v5-global--primary-color--light-100 $pf-v5-color-blue-200 #73bcf7 | ||||
.pf-v5-c-page__main-section[class*=pf-m-dark-] | --pf-v5-global--link--Color | #2b9af3 | ||
--pf-v5-global--link--Color --pf-v5-global--link--Color--light $pf-v5-global--link--Color--light $pf-v5-global--active-color--300 $pf-v5-color-blue-300 #2b9af3 | ||||
.pf-v5-c-page__main-section[class*=pf-m-dark-] | --pf-v5-global--link--Color--hover | #2b9af3 | ||
--pf-v5-global--link--Color--hover --pf-v5-global--link--Color--light $pf-v5-global--link--Color--light $pf-v5-global--active-color--300 $pf-v5-color-blue-300 #2b9af3 | ||||
.pf-v5-c-page__main-section[class*=pf-m-dark-] | --pf-v5-global--BackgroundColor--100 | #151515 | ||
--pf-v5-global--BackgroundColor--100 --pf-v5-global--BackgroundColor--dark-100 $pf-v5-global--BackgroundColor--dark-100 $pf-v5-color-black-900 #151515 | ||||
.pf-v5-c-page__main-section[class*=pf-m-dark-] | --pf-v5-global--icon--Color--light | #f0f0f0 | ||
--pf-v5-global--icon--Color--light --pf-v5-global--icon--Color--light--light $pf-v5-global--icon--Color--light--light $pf-v5-color-black-200 #f0f0f0 | ||||
.pf-v5-c-page__main-section[class*=pf-m-dark-] | --pf-v5-global--icon--Color--dark | #fff | ||
--pf-v5-global--icon--Color--dark --pf-v5-global--icon--Color--dark--light $pf-v5-global--icon--Color--dark--light $pf-v5-color-white #fff | ||||
.pf-v5-c-page__main-section[class*=pf-m-dark-] .pf-v5-c-button | --pf-v5-c-button--m-primary--BackgroundColor | #06c | ||
--pf-v5-c-button--m-primary--BackgroundColor --pf-v5-global--primary-color--dark-100 $pf-v5-global--primary-color--dark-100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-page__header-tools-item | --pf-v5-hidden-visible--hidden--Display | none | ||
.pf-v5-c-page__header-tools-item | --pf-v5-hidden-visible--Display | block | ||
--pf-v5-hidden-visible--Display --pf-v5-hidden-visible--visible--Display --pf-v5-c-page__header-tools-item--Display block | ||||
.pf-v5-c-page__header-tools-item | --pf-v5-hidden-visible--visible--Display | block | ||
--pf-v5-hidden-visible--visible--Display --pf-v5-c-page__header-tools-item--Display block | ||||
.pf-m-hidden.pf-v5-c-page__header-tools-item | --pf-v5-hidden-visible--Display | none | ||
--pf-v5-hidden-visible--Display --pf-v5-hidden-visible--hidden--Display none | ||||
:root | --pf-v5-c-page--BackgroundColor | #f0f0f0 | ||
--pf-v5-c-page--BackgroundColor --pf-v5-global--BackgroundColor--light-300 $pf-v5-global--BackgroundColor--light-300 $pf-v5-color-black-200 #f0f0f0 | ||||
:root | --pf-v5-c-page--inset | 1rem | ||
--pf-v5-c-page--inset --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page--xl--inset | 1.5rem | ||
--pf-v5-c-page--xl--inset --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
:root | --pf-v5-c-page__header--BackgroundColor | #151515 | ||
--pf-v5-c-page__header--BackgroundColor --pf-v5-global--BackgroundColor--dark-100 $pf-v5-global--BackgroundColor--dark-100 $pf-v5-color-black-900 #151515 | ||||
:root | --pf-v5-c-page__header--ZIndex | 300 | ||
--pf-v5-c-page__header--ZIndex --pf-v5-global--ZIndex--md $pf-v5-global--ZIndex--md 300 | ||||
:root | --pf-v5-c-page__header--MinHeight | 4.75rem | ||
:root | --pf-v5-c-page__header-brand--PaddingLeft | 1rem | ||
--pf-v5-c-page__header-brand--PaddingLeft --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__header-brand--xl--PaddingRight | 2rem | ||
--pf-v5-c-page__header-brand--xl--PaddingRight --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
:root | --pf-v5-c-page__header-brand--xl--PaddingLeft | 1.5rem | ||
--pf-v5-c-page__header-brand--xl--PaddingLeft --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
:root | --pf-v5-c-page__header-sidebar-toggle__c-button--PaddingTop | 0.5rem | ||
--pf-v5-c-page__header-sidebar-toggle__c-button--PaddingTop --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
:root | --pf-v5-c-page__header-sidebar-toggle__c-button--PaddingRight | 0.5rem | ||
--pf-v5-c-page__header-sidebar-toggle__c-button--PaddingRight --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
:root | --pf-v5-c-page__header-sidebar-toggle__c-button--PaddingBottom | 0.5rem | ||
--pf-v5-c-page__header-sidebar-toggle__c-button--PaddingBottom --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
:root | --pf-v5-c-page__header-sidebar-toggle__c-button--PaddingLeft | 0.5rem | ||
--pf-v5-c-page__header-sidebar-toggle__c-button--PaddingLeft --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
:root | --pf-v5-c-page__header-sidebar-toggle__c-button--MarginRight | 1rem | ||
--pf-v5-c-page__header-sidebar-toggle__c-button--MarginRight --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__header-sidebar-toggle__c-button--MarginLeft | calc(0.5rem * -1) | ||
--pf-v5-c-page__header-sidebar-toggle__c-button--MarginLeft calc(--pf-v5-c-page__header-sidebar-toggle__c-button--PaddingLeft * -1) calc(--pf-v5-global--spacer--sm * -1) calc($pf-v5-global--spacer--sm * -1) calc(pf-size-prem(8px) * -1) calc(0.5rem * -1) | ||||
:root | --pf-v5-c-page__header-sidebar-toggle__c-button--FontSize | 1.5rem | ||
--pf-v5-c-page__header-sidebar-toggle__c-button--FontSize --pf-v5-global--FontSize--2xl $pf-v5-global--FontSize--2xl pf-font-prem(24px) 1.5rem | ||||
:root | --pf-v5-c-page__header-brand-link--c-brand--MaxHeight | 3.75rem | ||
:root | --pf-v5-c-page__header-nav--BackgroundColor | #212427 | ||
--pf-v5-c-page__header-nav--BackgroundColor --pf-v5-global--BackgroundColor--dark-300 $pf-v5-global--BackgroundColor--dark-300 $pf-v5-color-black-850 #212427 | ||||
:root | --pf-v5-c-page__header-nav--xl--BackgroundColor | transparent | ||
:root | --pf-v5-c-page__header-nav--xl--PaddingRight | 2rem | ||
--pf-v5-c-page__header-nav--xl--PaddingRight --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
:root | --pf-v5-c-page__header-nav--xl--PaddingLeft | 2rem | ||
--pf-v5-c-page__header-nav--xl--PaddingLeft --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
:root | --pf-v5-c-page__header-tools--MarginRight | 1rem | ||
--pf-v5-c-page__header-tools--MarginRight --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__header-tools--xl--MarginRight | 1.5rem | ||
--pf-v5-c-page__header-tools--xl--MarginRight --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
:root | --pf-v5-c-page__header-tools--c-avatar--MarginLeft | 1rem | ||
--pf-v5-c-page__header-tools--c-avatar--MarginLeft --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__header-tools-group--MarginLeft | 2rem | ||
--pf-v5-c-page__header-tools-group--MarginLeft --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
:root | --pf-v5-c-page__header-tools-group--Display | flex | ||
:root | --pf-v5-c-page__header-tools-item--Display | block | ||
:root | --pf-v5-c-page__header-tools-item--c-notification-badge--hover--BackgroundColor | #3c3f42 | ||
--pf-v5-c-page__header-tools-item--c-notification-badge--hover--BackgroundColor --pf-v5-global--BackgroundColor--dark-200 $pf-v5-global--BackgroundColor--dark-200 $pf-v5-color-black-800 #3c3f42 | ||||
:root | --pf-v5-c-page__header-tools--c-button--notification-badge--m-unread--after--BackgroundColor | #004080 | ||
--pf-v5-c-page__header-tools--c-button--notification-badge--m-unread--after--BackgroundColor --pf-v5-global--primary-color--200 $pf-v5-global--primary-color--200 $pf-v5-color-blue-500 #004080 | ||||
:root | --pf-v5-c-page__header-tools--c-button--notification-badge--m-attention--after--BackgroundColor | #a30000 | ||
--pf-v5-c-page__header-tools--c-button--notification-badge--m-attention--after--BackgroundColor --pf-v5-global--danger-color--200 $pf-v5-global--danger-color--200 $pf-v5-color-red-200 #a30000 | ||||
:root | --pf-v5-c-page__header-tools--c-button--m-selected--notification-badge--m-unread--after--BackgroundColor | #004080 | ||
--pf-v5-c-page__header-tools--c-button--m-selected--notification-badge--m-unread--after--BackgroundColor --pf-v5-global--primary-color--200 $pf-v5-global--primary-color--200 $pf-v5-color-blue-500 #004080 | ||||
:root | --pf-v5-c-page__header-tools--c-button--m-selected--notification-badge--m-attention--after--BackgroundColor | #a30000 | ||
--pf-v5-c-page__header-tools--c-button--m-selected--notification-badge--m-attention--after--BackgroundColor --pf-v5-global--danger-color--200 $pf-v5-global--danger-color--200 $pf-v5-color-red-200 #a30000 | ||||
:root | --pf-v5-c-page__header-tools--c-button--m-selected--before--Width | auto | ||
:root | --pf-v5-c-page__header-tools--c-button--m-selected--before--Height | auto | ||
:root | --pf-v5-c-page__header-tools--c-button--m-selected--before--BackgroundColor | #3c3f42 | ||
--pf-v5-c-page__header-tools--c-button--m-selected--before--BackgroundColor --pf-v5-global--BackgroundColor--dark-200 $pf-v5-global--BackgroundColor--dark-200 $pf-v5-color-black-800 #3c3f42 | ||||
:root | --pf-v5-c-page__header-tools--c-button--m-selected--before--BorderRadius | 3px | ||
--pf-v5-c-page__header-tools--c-button--m-selected--before--BorderRadius --pf-v5-global--BorderRadius--sm $pf-v5-global--BorderRadius--sm 3px | ||||
:root | --pf-v5-c-page__header-tools--c-button--m-selected--c-notification-badge--m-unread--after--BorderColor | transparent | ||
:root | --pf-v5-c-page__sidebar--ZIndex | 200 | ||
--pf-v5-c-page__sidebar--ZIndex --pf-v5-global--ZIndex--sm $pf-v5-global--ZIndex--sm 200 | ||||
:root | --pf-v5-c-page__sidebar--Width | 18.125rem | ||
:root | --pf-v5-c-page__sidebar--BackgroundColor | #212427 | ||
--pf-v5-c-page__sidebar--BackgroundColor --pf-v5-global--BackgroundColor--dark-300 $pf-v5-global--BackgroundColor--dark-300 $pf-v5-color-black-850 #212427 | ||||
:root | --pf-v5-c-page__sidebar--m-light--BackgroundColor | #fff | ||
--pf-v5-c-page__sidebar--m-light--BackgroundColor --pf-v5-global--BackgroundColor--light-100 $pf-v5-global--BackgroundColor--light-100 $pf-v5-color-white #fff | ||||
:root | --pf-v5-c-page__sidebar--m-light--BorderRightWidth | 1px | ||
--pf-v5-c-page__sidebar--m-light--BorderRightWidth --pf-v5-global--BorderWidth--sm $pf-v5-global--BorderWidth--sm 1px | ||||
:root | --pf-v5-c-page__sidebar--m-light--BorderRightColor | #d2d2d2 | ||
--pf-v5-c-page__sidebar--m-light--BorderRightColor --pf-v5-global--BorderColor--100 $pf-v5-global--BorderColor--100 $pf-v5-color-black-300 #d2d2d2 | ||||
:root | --pf-v5-c-page__sidebar--BoxShadow | 0.75rem 0 0.75rem -0.5rem rgba(3, 3, 3, 0.18) | ||
--pf-v5-c-page__sidebar--BoxShadow --pf-v5-global--BoxShadow--lg-right $pf-v5-global--BoxShadow--lg-right pf-size-prem(12px) 0 pf-size-prem(12px) pf-size-prem(-8px) rgba($pf-v5-color-black-1000, .18) pf-size-prem(12px) 0 pf-size-prem(12px) pf-size-prem(-8px) rgba(#030303, .18) 0.75rem 0 0.75rem -0.5rem rgba(3, 3, 3, 0.18) | ||||
:root | --pf-v5-c-page__sidebar--Transition | all 250ms cubic-bezier(.42, 0, .58, 1) | ||
--pf-v5-c-page__sidebar--Transition --pf-v5-global--Transition $pf-v5-global--Transition all 250ms cubic-bezier(.42, 0, .58, 1) | ||||
:root | --pf-v5-c-page__sidebar--TranslateX | -100% | ||
:root | --pf-v5-c-page__sidebar--TranslateZ | 0 | ||
:root | --pf-v5-c-page__sidebar--m-expanded--TranslateX | 0 | ||
:root | --pf-v5-c-page__sidebar--xl--TranslateX | 0 | ||
:root | --pf-v5-c-page__sidebar-body--PaddingRight | 0 | ||
:root | --pf-v5-c-page__sidebar-body--PaddingLeft | 0 | ||
:root | --pf-v5-c-page__sidebar-body--m-page-insets--PaddingRight | 1rem | ||
--pf-v5-c-page__sidebar-body--m-page-insets--PaddingRight --pf-v5-c-page--inset --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__sidebar-body--m-page-insets--PaddingLeft | 1rem | ||
--pf-v5-c-page__sidebar-body--m-page-insets--PaddingLeft --pf-v5-c-page--inset --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__sidebar-body--m-menu--BorderTopColor | #3c3f42 | ||
--pf-v5-c-page__sidebar-body--m-menu--BorderTopColor --pf-v5-global--BackgroundColor--dark-200 $pf-v5-global--BackgroundColor--dark-200 $pf-v5-color-black-800 #3c3f42 | ||||
:root | --pf-v5-c-page__sidebar-body--m-menu--BorderTopWidth | 1px | ||
--pf-v5-c-page__sidebar-body--m-menu--BorderTopWidth --pf-v5-global--BorderWidth--sm $pf-v5-global--BorderWidth--sm 1px | ||||
:root | --pf-v5-c-page__sidebar-body--m-menu--c-context-selector--BorderBottomColor | #3c3f42 | ||
--pf-v5-c-page__sidebar-body--m-menu--c-context-selector--BorderBottomColor --pf-v5-global--BackgroundColor--dark-200 $pf-v5-global--BackgroundColor--dark-200 $pf-v5-color-black-800 #3c3f42 | ||||
:root | --pf-v5-c-page__main--ZIndex | 100 | ||
--pf-v5-c-page__main--ZIndex --pf-v5-global--ZIndex--xs $pf-v5-global--ZIndex--xs 100 | ||||
:root | --pf-v5-c-page__main-section--PaddingTop | 1rem | ||
--pf-v5-c-page__main-section--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__main-section--PaddingRight | 1rem | ||
--pf-v5-c-page__main-section--PaddingRight --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__main-section--PaddingBottom | 1rem | ||
--pf-v5-c-page__main-section--PaddingBottom --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__main-section--PaddingLeft | 1rem | ||
--pf-v5-c-page__main-section--PaddingLeft --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__main-section--xl--PaddingTop | 1.5rem | ||
--pf-v5-c-page__main-section--xl--PaddingTop --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
:root | --pf-v5-c-page__main-section--xl--PaddingRight | 1.5rem | ||
--pf-v5-c-page__main-section--xl--PaddingRight --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
:root | --pf-v5-c-page__main-section--xl--PaddingBottom | 1.5rem | ||
--pf-v5-c-page__main-section--xl--PaddingBottom --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
:root | --pf-v5-c-page__main-section--xl--PaddingLeft | 1.5rem | ||
--pf-v5-c-page__main-section--xl--PaddingLeft --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
:root | --pf-v5-c-page__main-breadcrumb--main-section--PaddingTop | 1rem | ||
--pf-v5-c-page__main-breadcrumb--main-section--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__main-section--BackgroundColor | #f0f0f0 | ||
--pf-v5-c-page__main-section--BackgroundColor --pf-v5-global--BackgroundColor--light-300 $pf-v5-global--BackgroundColor--light-300 $pf-v5-color-black-200 #f0f0f0 | ||||
:root | --pf-v5-c-page__main-section--m-light--BackgroundColor | #fff | ||
--pf-v5-c-page__main-section--m-light--BackgroundColor --pf-v5-global--BackgroundColor--light-100 $pf-v5-global--BackgroundColor--light-100 $pf-v5-color-white #fff | ||||
:root | --pf-v5-c-page__main-section--m-light-100--BackgroundColor | #fafafa | ||
--pf-v5-c-page__main-section--m-light-100--BackgroundColor --pf-v5-global--BackgroundColor--150 $pf-v5-global--BackgroundColor--150 $pf-v5-color-black-100 #fafafa | ||||
:root | --pf-v5-c-page__main-section--m-dark-100--BackgroundColor | rgba(#030303, .62) | ||
--pf-v5-c-page__main-section--m-dark-100--BackgroundColor --pf-v5-global--BackgroundColor--dark-transparent-100 $pf-v5-global--BackgroundColor--dark-transparent-100 rgba($pf-v5-color-black-1000, .62) rgba(#030303, .62) | ||||
:root | --pf-v5-c-page__main-section--m-dark-200--BackgroundColor | rgba(#030303, .32) | ||
--pf-v5-c-page__main-section--m-dark-200--BackgroundColor --pf-v5-global--BackgroundColor--dark-transparent-200 $pf-v5-global--BackgroundColor--dark-transparent-200 rgba($pf-v5-color-black-1000, .32) rgba(#030303, .32) | ||||
:root | --pf-v5-c-page__main-breadcrumb--page__main-tabs--PaddingTop | 1rem | ||
--pf-v5-c-page__main-breadcrumb--page__main-tabs--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__main-nav--page__main-tabs--PaddingTop | 1rem | ||
--pf-v5-c-page__main-nav--page__main-tabs--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page--section--m-limit-width--MaxWidth | calc(125rem - 18.125rem) | ||
--pf-v5-c-page--section--m-limit-width--MaxWidth calc(125rem - --pf-v5-c-page__sidebar--Width) calc(125rem - 18.125rem) | ||||
:root | --pf-v5-c-page--section--m-sticky-top--ZIndex | 300 | ||
--pf-v5-c-page--section--m-sticky-top--ZIndex --pf-v5-global--ZIndex--md $pf-v5-global--ZIndex--md 300 | ||||
:root | --pf-v5-c-page--section--m-sticky-top--BoxShadow | 0 0.125rem 0.25rem -0.0625rem rgba(3, 3, 3, 0.16) | ||
--pf-v5-c-page--section--m-sticky-top--BoxShadow --pf-v5-global--BoxShadow--sm-bottom $pf-v5-global--BoxShadow--sm-bottom 0 pf-size-prem(2px) pf-size-prem(4px) pf-size-prem(-1px) rgba($pf-v5-color-black-1000, .16) 0 pf-size-prem(2px) pf-size-prem(4px) pf-size-prem(-1px) rgba(#030303, .16) 0 0.125rem 0.25rem -0.0625rem rgba(3, 3, 3, 0.16) | ||||
:root | --pf-v5-c-page--section--m-sticky-bottom--ZIndex | 300 | ||
--pf-v5-c-page--section--m-sticky-bottom--ZIndex --pf-v5-global--ZIndex--md $pf-v5-global--ZIndex--md 300 | ||||
:root | --pf-v5-c-page--section--m-sticky-bottom--BoxShadow | 0 -0.125rem 0.25rem -0.0625rem rgba(3, 3, 3, 0.16) | ||
--pf-v5-c-page--section--m-sticky-bottom--BoxShadow --pf-v5-global--BoxShadow--sm-top $pf-v5-global--BoxShadow--sm-top 0 pf-size-prem(-2px) pf-size-prem(4px) pf-size-prem(-1px) rgba($pf-v5-color-black-1000, .16) 0 pf-size-prem(-2px) pf-size-prem(4px) pf-size-prem(-1px) rgba(#030303, .16) 0 -0.125rem 0.25rem -0.0625rem rgba(3, 3, 3, 0.16) | ||||
:root | --pf-v5-c-page--section--m-shadow-bottom--BoxShadow | 0 0.125rem 0.25rem -0.0625rem rgba(3, 3, 3, 0.16) | ||
--pf-v5-c-page--section--m-shadow-bottom--BoxShadow --pf-v5-global--BoxShadow--sm-bottom $pf-v5-global--BoxShadow--sm-bottom 0 pf-size-prem(2px) pf-size-prem(4px) pf-size-prem(-1px) rgba($pf-v5-color-black-1000, .16) 0 pf-size-prem(2px) pf-size-prem(4px) pf-size-prem(-1px) rgba(#030303, .16) 0 0.125rem 0.25rem -0.0625rem rgba(3, 3, 3, 0.16) | ||||
:root | --pf-v5-c-page--section--m-shadow-bottom--ZIndex | 100 | ||
--pf-v5-c-page--section--m-shadow-bottom--ZIndex --pf-v5-global--ZIndex--xs $pf-v5-global--ZIndex--xs 100 | ||||
:root | --pf-v5-c-page--section--m-shadow-top--BoxShadow | 0 -0.125rem 0.25rem -0.0625rem rgba(3, 3, 3, 0.16) | ||
--pf-v5-c-page--section--m-shadow-top--BoxShadow --pf-v5-global--BoxShadow--sm-top $pf-v5-global--BoxShadow--sm-top 0 pf-size-prem(-2px) pf-size-prem(4px) pf-size-prem(-1px) rgba($pf-v5-color-black-1000, .16) 0 pf-size-prem(-2px) pf-size-prem(4px) pf-size-prem(-1px) rgba(#030303, .16) 0 -0.125rem 0.25rem -0.0625rem rgba(3, 3, 3, 0.16) | ||||
:root | --pf-v5-c-page--section--m-shadow-top--ZIndex | 100 | ||
--pf-v5-c-page--section--m-shadow-top--ZIndex --pf-v5-global--ZIndex--xs $pf-v5-global--ZIndex--xs 100 | ||||
:root | --pf-v5-c-page__main-nav--BackgroundColor | #fff | ||
--pf-v5-c-page__main-nav--BackgroundColor --pf-v5-global--BackgroundColor--light-100 $pf-v5-global--BackgroundColor--light-100 $pf-v5-color-white #fff | ||||
:root | --pf-v5-c-page__main-nav--PaddingTop | 1rem | ||
--pf-v5-c-page__main-nav--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__main-nav--PaddingRight | 0 | ||
:root | --pf-v5-c-page__main-nav--PaddingLeft | 0 | ||
:root | --pf-v5-c-page__main-nav--m-sticky-top--PaddingBottom | 1rem | ||
--pf-v5-c-page__main-nav--m-sticky-top--PaddingBottom --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__main-nav--xl--PaddingRight | 0.5rem | ||
--pf-v5-c-page__main-nav--xl--PaddingRight --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
:root | --pf-v5-c-page__main-nav--xl--PaddingLeft | 0.5rem | ||
--pf-v5-c-page__main-nav--xl--PaddingLeft --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
:root | --pf-v5-c-page__main-subnav--BackgroundColor | #212427 | ||
--pf-v5-c-page__main-subnav--BackgroundColor --pf-v5-global--BackgroundColor--dark-300 $pf-v5-global--BackgroundColor--dark-300 $pf-v5-color-black-850 #212427 | ||||
:root | --pf-v5-c-page__main-subnav--BorderTopWidth | 1px | ||
--pf-v5-c-page__main-subnav--BorderTopWidth --pf-v5-global--BorderWidth--sm $pf-v5-global--BorderWidth--sm 1px | ||||
:root | --pf-v5-c-page__main-subnav--BorderTopColor | #3c3f42 | ||
--pf-v5-c-page__main-subnav--BorderTopColor --pf-v5-global--palette--black-800 $pf-v5-color-black-800 #3c3f42 | ||||
:root | --pf-v5-c-page__main-subnav--BorderLeftWidth | 0 | ||
:root | --pf-v5-c-page__main-subnav--BorderLeftColor | #3c3f42 | ||
--pf-v5-c-page__main-subnav--BorderLeftColor --pf-v5-global--palette--black-800 $pf-v5-color-black-800 #3c3f42 | ||||
:root | --pf-v5-c-page__sidebar--main__main-subnav--BorderLeftWidth | 1px | ||
--pf-v5-c-page__sidebar--main__main-subnav--BorderLeftWidth --pf-v5-global--BorderWidth--sm $pf-v5-global--BorderWidth--sm 1px | ||||
:root | --pf-v5-c-page__sidebar--m-collapsed--main__main-subnav--BorderLeftWidth | 0 | ||
:root | --pf-v5-c-page__main-breadcrumb--BackgroundColor | #fff | ||
--pf-v5-c-page__main-breadcrumb--BackgroundColor --pf-v5-global--BackgroundColor--light-100 $pf-v5-global--BackgroundColor--light-100 $pf-v5-color-white #fff | ||||
:root | --pf-v5-c-page__main-breadcrumb--PaddingTop | 1rem | ||
--pf-v5-c-page__main-breadcrumb--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__main-breadcrumb--PaddingRight | 1rem | ||
--pf-v5-c-page__main-breadcrumb--PaddingRight --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__main-breadcrumb--PaddingBottom | 0 | ||
:root | --pf-v5-c-page__main-breadcrumb--PaddingLeft | 1rem | ||
--pf-v5-c-page__main-breadcrumb--PaddingLeft --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__main-breadcrumb--m-sticky-top--PaddingBottom | 1rem | ||
--pf-v5-c-page__main-breadcrumb--m-sticky-top--PaddingBottom --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
:root | --pf-v5-c-page__main-breadcrumb--xl--PaddingRight | 1.5rem | ||
--pf-v5-c-page__main-breadcrumb--xl--PaddingRight --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
:root | --pf-v5-c-page__main-breadcrumb--xl--PaddingLeft | 1.5rem | ||
--pf-v5-c-page__main-breadcrumb--xl--PaddingLeft --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
:root | --pf-v5-c-page__main-tabs--PaddingTop | 0 | ||
:root | --pf-v5-c-page__main-tabs--PaddingRight | 0 | ||
:root | --pf-v5-c-page__main-tabs--PaddingBottom | 0 | ||
:root | --pf-v5-c-page__main-tabs--PaddingLeft | 0 | ||
:root | --pf-v5-c-page__main-tabs--BackgroundColor | #fff | ||
--pf-v5-c-page__main-tabs--BackgroundColor --pf-v5-global--BackgroundColor--light-100 $pf-v5-global--BackgroundColor--light-100 $pf-v5-color-white #fff | ||||
:root | --pf-v5-c-page__main-wizard--BackgroundColor | #fff | ||
--pf-v5-c-page__main-wizard--BackgroundColor --pf-v5-global--BackgroundColor--light-100 $pf-v5-global--BackgroundColor--light-100 $pf-v5-color-white #fff | ||||
:root | --pf-v5-c-page__main-wizard--BorderTopColor | #d2d2d2 | ||
--pf-v5-c-page__main-wizard--BorderTopColor --pf-v5-global--BorderColor--100 $pf-v5-global--BorderColor--100 $pf-v5-color-black-300 #d2d2d2 | ||||
:root | --pf-v5-c-page__main-wizard--BorderTopWidth | 1px | ||
--pf-v5-c-page__main-wizard--BorderTopWidth --pf-v5-global--BorderWidth--sm $pf-v5-global--BorderWidth--sm 1px | ||||
:root | --pf-v5-c-page__main-wizard--m-light-200--BackgroundColor | #f0f0f0 | ||
--pf-v5-c-page__main-wizard--m-light-200--BackgroundColor --pf-v5-global--BackgroundColor--200 $pf-v5-global--BackgroundColor--200 $pf-v5-color-black-200 #f0f0f0 | ||||
.pf-v5-c-page__header-tools-group | --pf-v5-hidden-visible--visible--Display | flex | ||
--pf-v5-hidden-visible--visible--Display --pf-v5-c-page__header-tools-group--Display flex | ||||
.pf-v5-c-page__header-tools-item .pf-v5-c-notification-badge.pf-m-read:hover | --pf-v5-c-notification-badge--after--BackgroundColor | #3c3f42 | ||
--pf-v5-c-notification-badge--after--BackgroundColor --pf-v5-c-page__header-tools-item--c-notification-badge--hover--BackgroundColor --pf-v5-global--BackgroundColor--dark-200 $pf-v5-global--BackgroundColor--dark-200 $pf-v5-color-black-800 #3c3f42 | ||||
.pf-v5-c-page__header-tools-item.pf-m-selected .pf-v5-c-button .pf-v5-c-notification-badge.pf-m-unread | --pf-v5-c-notification-badge--after--BackgroundColor | #004080 | ||
--pf-v5-c-notification-badge--after--BackgroundColor --pf-v5-c-page__header-tools--c-button--m-selected--notification-badge--m-unread--after--BackgroundColor --pf-v5-global--primary-color--200 $pf-v5-global--primary-color--200 $pf-v5-color-blue-500 #004080 | ||||
.pf-v5-c-page__header-tools-item.pf-m-selected .pf-v5-c-button .pf-v5-c-notification-badge.pf-m-attention | --pf-v5-c-notification-badge--after--BackgroundColor | #a30000 | ||
--pf-v5-c-notification-badge--after--BackgroundColor --pf-v5-global--danger-color--200 $pf-v5-global--danger-color--200 $pf-v5-color-red-200 #a30000 | ||||
.pf-v5-c-page__header-tools-item .pf-v5-c-button:focus .pf-v5-c-notification-badge.pf-m-unread | --pf-v5-c-notification-badge--after--BackgroundColor | #004080 | ||
--pf-v5-c-notification-badge--after--BackgroundColor --pf-v5-c-page__header-tools--c-button--notification-badge--m-unread--after--BackgroundColor --pf-v5-global--primary-color--200 $pf-v5-global--primary-color--200 $pf-v5-color-blue-500 #004080 | ||||
.pf-v5-c-page__header-tools-item .pf-v5-c-button:focus .pf-v5-c-notification-badge.pf-m-attention | --pf-v5-c-notification-badge--after--BackgroundColor | #a30000 | ||
--pf-v5-c-notification-badge--after--BackgroundColor --pf-v5-c-page__header-tools--c-button--notification-badge--m-attention--after--BackgroundColor --pf-v5-global--danger-color--200 $pf-v5-global--danger-color--200 $pf-v5-color-red-200 #a30000 | ||||
.pf-v5-c-page__sidebar.pf-m-expanded | --pf-v5-c-page__sidebar--TranslateX | 0 | ||
--pf-v5-c-page__sidebar--TranslateX --pf-v5-c-page__sidebar--m-expanded--TranslateX 0 | ||||
.pf-v5-c-page__sidebar-body.pf-m-menu + .pf-v5-c-page__sidebar-body.pf-m-menu | --pf-v5-c-page__sidebar-body--m-menu--BorderTopWidth | 0 | ||
.pf-v5-c-page__sidebar-body.pf-m-menu .pf-v5-c-context-selector | --pf-v5-c-context-selector__toggle--BorderTopColor | transparent | ||
.pf-v5-c-page__sidebar-body.pf-m-menu .pf-v5-c-context-selector | --pf-v5-c-context-selector__toggle--BorderRightColor | transparent | ||
.pf-v5-c-page__sidebar-body.pf-m-menu .pf-v5-c-context-selector | --pf-v5-c-context-selector__toggle--BorderBottomColor | #3c3f42 | ||
--pf-v5-c-context-selector__toggle--BorderBottomColor --pf-v5-c-page__sidebar-body--m-menu--c-context-selector--BorderBottomColor --pf-v5-global--BackgroundColor--dark-200 $pf-v5-global--BackgroundColor--dark-200 $pf-v5-color-black-800 #3c3f42 | ||||
.pf-v5-c-page__sidebar-body.pf-m-menu .pf-v5-c-context-selector | --pf-v5-c-context-selector__toggle--BorderLeftColor | transparent | ||
.pf-v5-c-page__sidebar-body.pf-m-menu .pf-v5-c-context-selector | --pf-v5-c-context-selector__menu--Top | 100% | ||
.pf-v5-c-page__sidebar-body.pf-m-page-insets | --pf-v5-c-page__sidebar-body--PaddingRight | 1rem | ||
--pf-v5-c-page__sidebar-body--PaddingRight --pf-v5-c-page__sidebar-body--m-page-insets--PaddingRight --pf-v5-c-page--inset --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-page__sidebar-body.pf-m-page-insets | --pf-v5-c-page__sidebar-body--PaddingLeft | 1rem | ||
--pf-v5-c-page__sidebar-body--PaddingLeft --pf-v5-c-page__sidebar-body--m-page-insets--PaddingLeft --pf-v5-c-page--inset --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-page__sidebar-body.pf-m-inset-none | --pf-v5-c-page__sidebar-body--PaddingRight | 0 | ||
.pf-v5-c-page__sidebar-body.pf-m-inset-none | --pf-v5-c-page__sidebar-body--PaddingLeft | 0 | ||
.pf-v5-c-page__sidebar.pf-m-collapsed ~ .pf-v5-c-page__main | --pf-v5-c-page__main-subnav--BorderLeftWidth | 0 | ||
--pf-v5-c-page__main-subnav--BorderLeftWidth --pf-v5-c-page__sidebar--m-collapsed--main__main-subnav--BorderLeftWidth 0 | ||||
.pf-v5-c-page__main-breadcrumb + .pf-v5-c-page__main-section | --pf-v5-c-page__main-section--PaddingTop | 1rem | ||
--pf-v5-c-page__main-section--PaddingTop --pf-v5-c-page__main-breadcrumb--main-section--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-page__main-breadcrumb.pf-m-sticky-top | --pf-v5-c-page__main-breadcrumb--PaddingBottom | 1rem | ||
--pf-v5-c-page__main-breadcrumb--PaddingBottom --pf-v5-c-page__main-breadcrumb--m-sticky-top--PaddingBottom --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-page__main-nav + .pf-v5-c-page__main-tabs | --pf-v5-c-page__main-tabs--PaddingTop | 1rem | ||
--pf-v5-c-page__main-tabs--PaddingTop --pf-v5-c-page__main-nav--page__main-tabs--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-page__main-breadcrumb + .pf-v5-c-page__main-tabs | --pf-v5-c-page__main-tabs--PaddingTop | 1rem | ||
--pf-v5-c-page__main-tabs--PaddingTop --pf-v5-c-page__main-breadcrumb--page__main-tabs--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-page__main-section.pf-m-light | --pf-v5-c-page__main-section--BackgroundColor | #fff | ||
--pf-v5-c-page__main-section--BackgroundColor --pf-v5-c-page__main-section--m-light--BackgroundColor --pf-v5-global--BackgroundColor--light-100 $pf-v5-global--BackgroundColor--light-100 $pf-v5-color-white #fff | ||||
.pf-v5-c-page__main-section.pf-m-light-100 | --pf-v5-c-page__main-section--BackgroundColor | #fafafa | ||
--pf-v5-c-page__main-section--BackgroundColor --pf-v5-c-page__main-section--m-light-100--BackgroundColor --pf-v5-global--BackgroundColor--150 $pf-v5-global--BackgroundColor--150 $pf-v5-color-black-100 #fafafa | ||||
.pf-v5-c-page__main-section.pf-m-dark-100 | --pf-v5-c-page__main-section--BackgroundColor | rgba(#030303, .62) | ||
--pf-v5-c-page__main-section--BackgroundColor --pf-v5-c-page__main-section--m-dark-100--BackgroundColor --pf-v5-global--BackgroundColor--dark-transparent-100 $pf-v5-global--BackgroundColor--dark-transparent-100 rgba($pf-v5-color-black-1000, .62) rgba(#030303, .62) | ||||
.pf-v5-c-page__main-section.pf-m-dark-200 | --pf-v5-c-page__main-section--BackgroundColor | rgba(#030303, .32) | ||
--pf-v5-c-page__main-section--BackgroundColor --pf-v5-c-page__main-section--m-dark-200--BackgroundColor --pf-v5-global--BackgroundColor--dark-transparent-200 $pf-v5-global--BackgroundColor--dark-transparent-200 rgba($pf-v5-color-black-1000, .32) rgba(#030303, .32) | ||||
.pf-v5-c-page__main-wizard:first-child | --pf-v5-c-page__main-wizard--BorderTopWidth | 0 | ||
.pf-v5-c-page__main-wizard.pf-m-light-200 | --pf-v5-c-page__main-wizard--BackgroundColor | #f0f0f0 | ||
--pf-v5-c-page__main-wizard--BackgroundColor --pf-v5-c-page__main-wizard--m-light-200--BackgroundColor --pf-v5-global--BackgroundColor--200 $pf-v5-global--BackgroundColor--200 $pf-v5-color-black-200 #f0f0f0 |
View source on GitHub