Wizard

A wizard is a guided workflow that helps users complete complex tasks, create objects, or follow a series of steps.

Warning alert:Deprecated feature

This component implementation has been deprecated in favor of a newer solution, and is no longer being maintained or enhanced. To learn more about deprecated components, visit about PatternFly.

If you seek a wizard solution that allows for more composition, see the React tab.

Examples

Basic

The content of this step overflows and creates a scrollbar, which causes a tabindex of "0", a role of "region", and an aria-label or aria-labelledby to be applied.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer bibendum in neque nec pharetra. Duis lacinia vel sapien ut imperdiet. Nunc ultrices mollis dictum. Duis tempus, massa nec tincidunt tempor, enim ex porttitor odio, eu facilisis dolor tortor id sapien. Etiam sit amet molestie lacus. Nulla facilisi. Duis eget finibus ipsum. Quisque dictum enim sed sodales porta. Curabitur eget orci eu risus posuere pulvinar id nec turpis. Morbi mattis orci vel posuere tincidunt. Fusce bibendum et libero a auctor.

Proin elementum commodo sodales. Quisque eget libero mattis, ornare augue at, egestas nisi. Mauris ultrices orci fringilla pretium mattis. Aliquam erat volutpat. Sed pharetra condimentum dui, nec bibendum ante. Vestibulum sollicitudin, sem accumsan pharetra molestie, purus turpis lacinia lorem, commodo sodales quam lectus a urna. Nam gravida, felis a lacinia varius, ex ipsum ultrices orci, non egestas diam velit in mi. Ut sit amet commodo orci. Duis sed diam odio. Duis mi metus, dignissim in odio nec, ornare aliquet libero. Sed luctus elit nibh. Quisque et felis diam. Integer ac metus dolor.

Basic with disabled steps

Step 1 content

Anchors for nav items

Step 1: Read about PF3

Incrementally enabled steps

Step 1 content

Expandable steps

Substep A content

Finished

Step 1 content

Enabled on form validation

Step 1 content

Validate on button press

This example demonstrates how to use the WizardContextConsumer to consume the WizardContext. WizardContext can be used to imperatively move to a specific wizard step.

The definition of the WizardContext is as follows:

interface WizardContext { goToStepById: (stepId: number | string) => void; goToStepByName: (stepName: string) => void; onNext: () => void; onBack: () => void; onClose: () => void; activeStep: WizardStep; }

Step 1 content

Progressive steps

Get current step

Step 1 content

Wizard in modal

Wizard with drawer

Information step content

Props

Wizard

*required
NameTypeDefaultDescription
stepsrequiredWizardStep[]The wizard steps configuration object
appendToHTMLElement | (() => HTMLElement)nullThe parent container to append the modal to. Defaults to document.body
backButtonTextReact.ReactNode'Back'(Unused if footer is controlled) The Back button text
cancelButtonTextReact.ReactNode'Cancel'(Unused if footer is controlled) The Cancel button text
classNamestring''Additional classes spread to the Wizard
closeButtonAriaLabelstring'Close'(Unused if footer is controlled) aria-label for the close button
descriptionReact.ReactNode''The wizard description
descriptionComponent'div' | 'p''p'Component type of the description
descriptionIdstringAn optional id for the description
footerReact.ReactNodenull(Use to control the footer) Passing in a footer component lets you control the buttons yourself
hasDrawerbooleanfalseFlag indicating the wizard has a drawer for at least one of the wizard steps
hasNoBodyPaddingbooleanfalseCan remove the default padding around the main body content by setting this to true
heightnumber | stringnullCustom height of the wizard
hideClosebooleanfalseFlag indicating whether the close button should be in the header
isDrawerExpandedbooleanfalseFlag indicating the wizard drawer is expanded
isNavExpandablebooleanfalseFlag indicating nav items with sub steps are expandable
isOpenbooleanundefinedFlag indicating Wizard modal is open. Wizard will be placed into a modal if this prop is provided
mainAriaLabelstringnullAdds an accessible name to the wizard body when the body content overflows and renders a scrollbar.
mainAriaLabelledBystringnullAdds an accessible name to the wizard body by passing the the id of one or more elements. The aria-labelledby will only be applied when the body content overflows and renders a scrollbar.
navAriaLabelstringnullAria-label for the Nav
navAriaLabelledBystringnullSets aria-labelledby on nav element
nextButtonTextReact.ReactNode'Next'(Unused if footer is controlled) The Next button text
onBack( newStep: { id?: string | number; name: React.ReactNode }, prevStep: { prevId?: string | number; prevName: React.ReactNode } ) => voidnull(Unused if footer is controlled) Callback function after Back button is clicked
onClose() => void() => undefined as anyCallback function to close the wizard
onCurrentStepChanged(step: WizardStep) => voidCallback function to signal the current step in the wizard
onExpandDrawer() => void() => undefined as anyCallback function for when the drawer is toggled. Can be used to set browser focus in the drawer.
onGoToStep( newStep: { id?: string | number; name: React.ReactNode }, prevStep: { prevId?: string | number; prevName: React.ReactNode } ) => voidnullCallback function when a step in the nav is clicked
onNext( newStep: { id?: string | number; name: React.ReactNode }, prevStep: { prevId?: string | number; prevName: React.ReactNode } ) => voidnull(Unused if footer is controlled) Callback function after Next button is clicked
onSave() => void(Unused if footer is controlled) Callback function to save at the end of the wizard, if not specified uses onClose
startAtStepnumber1The current step the wizard is on (1 or higher)
titlestringnullThe wizard title to display if header is desired
titleIdstringAn optional id for the title
widthnumber | stringnullCustom width of the wizard

WizardNav

*required
NameTypeDefaultDescription
aria-labelstringAria-label applied to the nav element
aria-labelledbystringSets the aria-labelledby attribute on the nav element
childrenanychildren should be WizardNavItem components
isOpenbooleanfalseWhether the nav is expanded
ouiaSafeNo type infotrue
returnListbooleanfalseTrue to return the inner list without the wrapping nav element

WizardNavItem

*required
NameTypeDefaultDescription
steprequirednumberThe step passed into the onNavItemClick callback
childrenReact.ReactNodenullCan nest a WizardNav component for substeps
contentReact.ReactNode''The content to display in the nav item
hrefstringnullAn optional url to use for when using an anchor component
idstring | numberThe id for the nav item
isCurrentbooleanfalseWhether the nav item is the currently active item
isDisabledbooleanfalseWhether the nav item is disabled
isExpandablebooleanfalseFlag indicating that this NavItem has child steps and is expandable
navItemComponent'button' | 'a''button'Component used to render WizardNavItem
onNavItemClick(step: number) => any() => undefinedCallback for when the nav item is clicked
ouiaSafeNo type infotrue

WizardHeader

*required
NameTypeDefaultDescription
titlerequiredstringTitle of the wizard
closeButtonAriaLabelstringAria-label applied to the X (Close) button
descriptionReact.ReactNodeDescription of the wizard
descriptionComponent'div' | 'p''div'Component type of the description
descriptionIdstringid for the description
hideClosebooleanFlag indicating whether the close button should be in the header
onClose() => void() => undefinedCallback function called when the X (Close) button is clicked
titleIdstringid for the title

WizardBody

*required
NameTypeDefaultDescription
activeSteprequiredWizardStepThe currently active WizardStep
aria-labelledbyrequiredstringAdds an accessible name to the wizard body by passing the the id of one or more elements. The aria-labelledby will only be applied when the body content overflows and renders a scrollbar.
childrenrequiredanyAnything that can be rendered in the Wizard body
aria-labelstringAdds an accessible name to the wizard body when the body content overflows and renders a scrollbar.
hasDrawerboolean
hasNoBodyPaddingbooleanfalseSet to true to remove the default body padding
isDrawerExpandedbooleanFlag indicating the wizard drawer is expanded
mainComponentReact.ElementType'div'Component used as the primary content container
onExpandDrawer() => voidCallback function for when the drawer is toggled

WizardFooter

*required
NameTypeDefaultDescription
childrenrequiredanyButtons in the footer

WizardToggle

*required
NameTypeDefaultDescription
activeSteprequiredWizardStepThe currently active WizardStep
isNavOpenrequiredbooleanIf the nav is open
navrequired(isWizardNavOpen: boolean) => React.ReactElementFunction that returns the WizardNav component
onNavTogglerequired(isOpen: boolean) => voidCallback function for when the nav is toggled
stepsrequiredWizardStep[]The wizard steps
aria-labelstring'Wizard Toggle'The button's aria-label
childrenReact.ReactNodeThe WizardFooter
hasDrawerbooleanFlag indicating the wizard has a drawer for at least one of the wizard steps
hasNoBodyPaddingbooleanfalseSet to true to remove body padding
isDrawerExpandedbooleanFlag indicating the wizard drawer is expanded
isInPagebooleantrueIf the wizard is in-page
mainAriaLabelstringnullAdds an accessible name to the wizard body when the body content overflows and renders a scrollbar.
mainAriaLabelledBystringnullAdds an accessible name to the wizard body by passing the the id of one or more elements. The aria-labelledby will only be applied when the body content overflows and renders a scrollbar.
onExpandDrawer() => voidCallback function for when the drawer is toggled

WizardStep

*required
NameTypeDefaultDescription
namerequiredReact.ReactNodeThe name of the step
canJumpTobooleanEnables or disables the step in the navigation. Enabled by default.
componentanyThe component to render in the main body
drawerPanelContentanyThe content to render in the drawer panel (use when hasDrawer prop is set on the wizard).
drawerToggleButtonReact.ReactNodeCustom drawer toggle button that opens the drawer.
enableNextboolean(Unused if footer is controlled) The condition needed to enable the Next button
hideBackButtonboolean(Unused if footer is controlled) True to hide the Back button
hideCancelButtonboolean(Unused if footer is controlled) True to hide the Cancel button
idstring | numberOptional identifier
isDisabledbooleanFlag to disable the step in the navigation
isFinishedStepbooleanSetting to true hides the side nav and footer
nextButtonTextReact.ReactNode(Unused if footer is controlled) Can change the Next button text. If nextButtonText is also set for the Wizard, this step specific one overrides it.
stepNavItemPropsReact.HTMLProps<HTMLButtonElement | HTMLAnchorElement> | WizardNavItemPropsProps to pass to the WizardNavItem
stepsWizardStep[]Sub steps

CSS variables

Expand or collapse columnSelectorVariableValue
.pf-v6-c-wizard--pf-v6-c-wizard--Height
initial
.pf-v6-c-wizard--pf-v6-c-wizard--Height--base
100%
.pf-v6-c-wizard--pf-v6-c-modal-box--c-wizard--Height--base
47.625rem
.pf-v6-c-wizard--pf-v6-c-wizard__header--BackgroundColor
(In light theme) #f2f2f2
.pf-v6-c-wizard--pf-v6-c-wizard__header--ZIndex
auto
.pf-v6-c-wizard--pf-v6-c-wizard__header--PaddingBlockStart
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__header--PaddingInlineEnd
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__header--PaddingBlockEnd
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__header--PaddingInlineStart
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__header--BorderBlockEndWidth
1px
.pf-v6-c-wizard--pf-v6-c-wizard__header--BorderBlockEndColor
(In light theme) #c7c7c7
.pf-v6-c-wizard--pf-v6-c-wizard__close--InsetBlockStart
calc(1.5rem - 0.5rem)
.pf-v6-c-wizard--pf-v6-c-wizard__close--InsetInlineEnd
0.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__close--FontSize
1.25rem
.pf-v6-c-wizard--pf-v6-c-wizard__title--PaddingInlineEnd
3rem
.pf-v6-c-wizard--pf-v6-c-wizard__title-text--FontSize
1.75rem
.pf-v6-c-wizard--pf-v6-c-wizard__title-text--FontFamily
"Red Hat Display", "RedHatDisplay", "Noto Sans Arabic", "Noto Sans Hebrew", "Noto Sans JP", "Noto Sans KR", "Noto Sans Malayalam", "Noto Sans SC", "Noto Sans TC", "Noto Sans Thai", Helvetica, Arial, sans-serif
.pf-v6-c-wizard--pf-v6-c-wizard__title-text--FontWeight
500
.pf-v6-c-wizard--pf-v6-c-wizard__title-text--LineHeight
1.3
.pf-v6-c-wizard--pf-v6-c-wizard__title-text--Color
(In light theme) #151515
.pf-v6-c-wizard--pf-v6-c-wizard__description--PaddingBlockStart
0.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__description--Color
(In light theme) #4d4d4d
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--Gap
0.25rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--Color
(In light theme) #4d4d4d
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--TextDecoration
none
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--hover--Color
(In light theme) #4d4d4d
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--hover--BackgroundColor
(In light theme) rgba(199, 199, 199, 0.2500)
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--m-current--Color
(In light theme) #151515
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--m-current--BackgroundColor
(In light theme) rgba(199, 199, 199, 0.2500)
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--m-disabled--Color
(In light theme) #a3a3a3
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--m-disabled--BackgroundColor
transparent
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-main--PaddingBlockStart
0.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-main--PaddingBlockEnd
0.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-main--PaddingInlineStart
0.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-main--PaddingInlineEnd
0.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-main--BackgroundColor
(In light theme) rgba(255, 255, 255, 0.0000)
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-main--BorderRadius
6px
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-toggle--PaddingInlineEnd
0.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-toggle--PaddingInlineStart
0.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-toggle--Color
(In light theme) #1f1f1f
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-toggle-icon--TransitionDuration
200ms
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-toggle-icon--TransitionTimingFunction
cubic-bezier(.4, 0, .2, 1)
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-toggle-icon--Rotate
0
.pf-v6-c-wizard--pf-v6-c-wizard__nav-item--m-expanded__link-toggle-icon--Rotate
90deg
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--before--Width
1.25rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--before--Height
1.25rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--before--InsetBlockStart
0.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--before--BackgroundColor
(In light theme) #f2f2f2
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--before--BorderRadius
24px
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--before--Color
(In light theme) #151515
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--before--FontSize
0.875rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--m-current--before--BackgroundColor
(In light theme) #0066cc
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--m-current--before--Color
(In light theme) #ffffff
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--m-disabled--before--BackgroundColor
transparent
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--m-disabled--before--Color
(In light theme) #a3a3a3
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-status-icon--Color
(In light theme) #1f1f1f
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--m-danger__nav-link-status-icon--Color
(In light theme) #b1380b
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link--m-success__nav-link-status-icon--Color
(In light theme) #3d7317
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-status-icon--InsetBlockStart
4px
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-status-icon--FontSize
1.25rem
.pf-v6-c-wizard--pf-v6-c-wizard__toggle--BackgroundColor
(In light theme) #ffffff
.pf-v6-c-wizard--pf-v6-c-wizard__toggle--ZIndex
100
.pf-v6-c-wizard--pf-v6-c-wizard__toggle--PaddingBlockStart
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__toggle--PaddingInlineEnd
1rem
.pf-v6-c-wizard--pf-v6-c-wizard__toggle--PaddingBlockEnd
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__toggle--PaddingInlineStart
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__toggle--BorderBlockEndWidth
1px
.pf-v6-c-wizard--pf-v6-c-wizard__toggle--BorderBlockEndColor
(In light theme) #c7c7c7
.pf-v6-c-wizard--pf-v6-c-wizard__toggle-num--InsetBlockStart
0
.pf-v6-c-wizard--pf-v6-c-wizard__toggle-list-item--not-last-child--MarginInlineEnd
0.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__toggle-list-item--MarginBlockEnd
0.25rem
.pf-v6-c-wizard--pf-v6-c-wizard__toggle-list-item--Gap
0.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-link-status-icon--LineHeight
1
.pf-v6-c-wizard--pf-v6-c-wizard__toggle-status-icon--Color
(In light theme) #1f1f1f
.pf-v6-c-wizard--pf-v6-c-wizard__toggle-list-item--m-danger__status-icon--Color
(In light theme) #b1380b
.pf-v6-c-wizard--pf-v6-c-wizard__toggle-list-item--m-success__status-icon--Color
(In light theme) #3d7317
.pf-v6-c-wizard--pf-v6-c-wizard__toggle-status-icon--InsetBlockStart
2px
.pf-v6-c-wizard--pf-v6-c-wizard__toggle-status-icon--FontSize
1.25rem
.pf-v6-c-wizard--pf-v6-c-wizard__toggle-list--MarginInlineEnd
0.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__toggle-list--MarginBlockEnd
calc(0.25rem * -1)
.pf-v6-c-wizard--pf-v6-c-wizard__toggle-separator--Color
(In light theme) #c7c7c7
.pf-v6-c-wizard--pf-v6-c-wizard__toggle-icon--LineHeight
1.5
.pf-v6-c-wizard--pf-v6-c-wizard__toggle--m-expanded__toggle-icon--Rotate
180deg
.pf-v6-c-wizard--pf-v6-c-wizard__nav--ZIndex
100
.pf-v6-c-wizard--pf-v6-c-wizard__nav--BackgroundColor
(In light theme) #ffffff
.pf-v6-c-wizard--pf-v6-c-wizard__nav--BoxShadow
0px 10px 9px -8px rgba(41, 41, 41, 0.1500)
.pf-v6-c-wizard--pf-v6-c-wizard__nav--Width
100%
.pf-v6-c-wizard--pf-v6-c-wizard__nav--lg--Width
15.625rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav--lg--BorderInlineEndWidth
1px
.pf-v6-c-wizard--pf-v6-c-wizard__nav--lg--BorderInlineEndColor
(In light theme) #c7c7c7
.pf-v6-c-wizard--pf-v6-c-wizard__nav-list--PaddingBlockStart
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-list--PaddingInlineEnd
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-list--PaddingBlockEnd
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-list--PaddingInlineStart
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-list--nested--MarginInlineStart
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-list--nested--MarginBlockStart
1rem
.pf-v6-c-wizard--pf-v6-c-wizard__nav-item--MarginBlockStart
1rem
.pf-v6-c-wizard--pf-v6-c-wizard__outer-wrap--BackgroundColor
(In light theme) #ffffff
.pf-v6-c-wizard--pf-v6-c-wizard__outer-wrap--lg--PaddingInlineStart
100%
.pf-v6-c-wizard--pf-v6-c-wizard__outer-wrap--MinHeight
15.625rem
.pf-v6-c-wizard--pf-v6-c-wizard__main--ZIndex
auto
.pf-v6-c-wizard--pf-v6-c-wizard__main-body--PaddingBlockStart
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__main-body--PaddingInlineEnd
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__main-body--PaddingBlockEnd
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__main-body--PaddingInlineStart
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__footer--BackgroundColor
(In light theme) #ffffff
.pf-v6-c-wizard--pf-v6-c-wizard__footer--ZIndex
100
.pf-v6-c-wizard--pf-v6-c-wizard__footer--PaddingBlockStart
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__footer--PaddingInlineEnd
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__footer--PaddingBlockEnd
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__footer--PaddingInlineStart
1.5rem
.pf-v6-c-wizard--pf-v6-c-wizard__footer--BorderBlockStartWidth
1px
.pf-v6-c-wizard--pf-v6-c-wizard__footer--BorderBlockStartColor
(In light theme) #c7c7c7
.pf-v6-c-wizard.pf-m-finished--pf-v6-c-wizard__outer-wrap--lg--PaddingInlineStart
0
.pf-v6-c-wizard__toggle-list-item.pf-m-danger--pf-v6-c-wizard__toggle-status-icon--Color
(In light theme) #b1380b
.pf-v6-c-wizard__toggle-list-item.pf-m-success--pf-v6-c-wizard__toggle-status-icon--Color
(In light theme) #3d7317
.pf-v6-c-wizard__nav-item.pf-m-expanded > .pf-v6-c-wizard__nav-link--pf-v6-c-wizard__nav-link-toggle-icon--Rotate
90deg
.pf-v6-c-wizard__nav-link.pf-m-current--pf-v6-c-wizard__nav-link--Color
(In light theme) #151515
.pf-v6-c-wizard__nav-link.pf-m-current--pf-v6-c-wizard__nav-link-main--BackgroundColor
(In light theme) rgba(199, 199, 199, 0.2500)
.pf-v6-c-wizard__toggle-num--pf-v6-c-wizard__nav-link--before--BackgroundColor
(In light theme) #0066cc
.pf-v6-c-wizard__toggle-num--pf-v6-c-wizard__nav-link--before--Color
(In light theme) #ffffff
.pf-v6-c-wizard__nav-link.pf-m-success--pf-v6-c-wizard__nav-link-status-icon--Color
(In light theme) #3d7317
.pf-v6-c-wizard__nav-link.pf-m-danger--pf-v6-c-wizard__nav-link-status-icon--Color
(In light theme) #b1380b
.pf-v6-c-wizard__nav-link:where(:hover, :focus)--pf-v6-c-wizard__nav-link--Color
(In light theme) #4d4d4d
.pf-v6-c-wizard__nav-link:where(:hover, :focus)--pf-v6-c-wizard__nav-link-main--BackgroundColor
(In light theme) rgba(199, 199, 199, 0.2500)
.pf-v6-c-wizard__nav-link:disabled--pf-v6-c-wizard__nav-link--Color
(In light theme) #a3a3a3
.pf-v6-c-wizard__nav-link:disabled--pf-v6-c-wizard__nav-link-main--BackgroundColor
transparent
.pf-v6-c-wizard__nav-link:disabled::before--pf-v6-c-wizard__nav-link--before--BackgroundColor
transparent
.pf-v6-c-wizard__nav-link:disabled::before--pf-v6-c-wizard__nav-link--before--Color
(In light theme) #a3a3a3