Warning alert:Deprecated feature
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.
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;
}
Props
Wizard
Name | Type | Default | Description |
---|---|---|---|
stepsrequired | WizardStep[] | The wizard steps configuration object | |
appendTo | HTMLElement | (() => HTMLElement) | null | The parent container to append the modal to. Defaults to document.body |
backButtonText | React.ReactNode | 'Back' | (Unused if footer is controlled) The Back button text |
cancelButtonText | React.ReactNode | 'Cancel' | (Unused if footer is controlled) The Cancel button text |
className | string | '' | Additional classes spread to the Wizard |
closeButtonAriaLabel | string | 'Close' | (Unused if footer is controlled) aria-label for the close button |
description | React.ReactNode | '' | The wizard description |
descriptionComponent | 'div' | 'p' | 'p' | Component type of the description |
descriptionId | string | An optional id for the description | |
footer | React.ReactNode | null | (Use to control the footer) Passing in a footer component lets you control the buttons yourself |
hasDrawer | boolean | false | Flag indicating the wizard has a drawer for at least one of the wizard steps |
hasNoBodyPadding | boolean | false | Can remove the default padding around the main body content by setting this to true |
height | number | string | null | Custom height of the wizard |
hideClose | boolean | false | Flag indicating whether the close button should be in the header |
isDrawerExpanded | boolean | false | Flag indicating the wizard drawer is expanded |
isNavExpandable | boolean | false | Flag indicating nav items with sub steps are expandable |
isOpen | boolean | undefined | Flag indicating Wizard modal is open. Wizard will be placed into a modal if this prop is provided |
mainAriaLabel | string | null | Adds an accessible name to the wizard body when the body content overflows and renders a scrollbar. |
mainAriaLabelledBy | string | null | Adds 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. |
navAriaLabel | string | null | Aria-label for the Nav |
navAriaLabelledBy | string | null | Sets aria-labelledby on nav element |
nextButtonText | React.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 } ) => void | null | (Unused if footer is controlled) Callback function after Back button is clicked |
onClose | () => void | () => undefined as any | Callback function to close the wizard |
onCurrentStepChanged | (step: WizardStep) => void | Callback function to signal the current step in the wizard | |
onExpandDrawer | () => void | () => undefined as any | Callback 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 } ) => void | null | Callback function when a step in the nav is clicked |
onNext | ( newStep: { id?: string | number; name: React.ReactNode }, prevStep: { prevId?: string | number; prevName: React.ReactNode } ) => void | null | (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 | |
startAtStep | number | 1 | The current step the wizard is on (1 or higher) |
title | string | null | The wizard title to display if header is desired |
titleId | string | An optional id for the title | |
width | number | string | null | Custom width of the wizard |
WizardNav
Name | Type | Default | Description |
---|---|---|---|
aria-label | string | Aria-label applied to the nav element | |
aria-labelledby | string | Sets the aria-labelledby attribute on the nav element | |
children | any | children should be WizardNavItem components | |
isOpen | boolean | false | Whether the nav is expanded |
ouiaSafe | No type info | true | |
returnList | boolean | false | True to return the inner list without the wrapping nav element |
WizardNavItem
Name | Type | Default | Description |
---|---|---|---|
steprequired | number | The step passed into the onNavItemClick callback | |
children | React.ReactNode | null | Can nest a WizardNav component for substeps |
content | React.ReactNode | '' | The content to display in the nav item |
href | string | null | An optional url to use for when using an anchor component |
id | string | number | The id for the nav item | |
isCurrent | boolean | false | Whether the nav item is the currently active item |
isDisabled | boolean | false | Whether the nav item is disabled |
isExpandable | boolean | false | Flag indicating that this NavItem has child steps and is expandable |
navItemComponent | 'button' | 'a' | 'button' | Component used to render WizardNavItem |
onNavItemClick | (step: number) => any | () => undefined | Callback for when the nav item is clicked |
ouiaSafe | No type info | true |
WizardHeader
Name | Type | Default | Description |
---|---|---|---|
titlerequired | string | Title of the wizard | |
closeButtonAriaLabel | string | Aria-label applied to the X (Close) button | |
description | React.ReactNode | Description of the wizard | |
descriptionComponent | 'div' | 'p' | 'div' | Component type of the description |
descriptionId | string | id for the description | |
hideClose | boolean | Flag indicating whether the close button should be in the header | |
onClose | () => void | () => undefined | Callback function called when the X (Close) button is clicked |
titleId | string | id for the title |
WizardBody
Name | Type | Default | Description |
---|---|---|---|
activeSteprequired | WizardStep | The currently active WizardStep | |
aria-labelledbyrequired | string | Adds 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. | |
childrenrequired | any | Anything that can be rendered in the Wizard body | |
aria-label | string | Adds an accessible name to the wizard body when the body content overflows and renders a scrollbar. | |
hasDrawer | boolean | ||
hasNoBodyPadding | boolean | false | Set to true to remove the default body padding |
isDrawerExpanded | boolean | Flag indicating the wizard drawer is expanded | |
mainComponent | React.ElementType | 'div' | Component used as the primary content container |
onExpandDrawer | () => void | Callback function for when the drawer is toggled |
WizardFooter
Name | Type | Default | Description |
---|---|---|---|
childrenrequired | any | Buttons in the footer |
WizardToggle
Name | Type | Default | Description |
---|---|---|---|
activeSteprequired | WizardStep | The currently active WizardStep | |
isNavOpenrequired | boolean | If the nav is open | |
navrequired | (isWizardNavOpen: boolean) => React.ReactElement | Function that returns the WizardNav component | |
onNavTogglerequired | (isOpen: boolean) => void | Callback function for when the nav is toggled | |
stepsrequired | WizardStep[] | The wizard steps | |
aria-label | string | 'Wizard Toggle' | The button's aria-label |
children | React.ReactNode | The WizardFooter | |
hasDrawer | boolean | Flag indicating the wizard has a drawer for at least one of the wizard steps | |
hasNoBodyPadding | boolean | false | Set to true to remove body padding |
isDrawerExpanded | boolean | Flag indicating the wizard drawer is expanded | |
isInPage | boolean | true | If the wizard is in-page |
mainAriaLabel | string | null | Adds an accessible name to the wizard body when the body content overflows and renders a scrollbar. |
mainAriaLabelledBy | string | null | Adds 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 | () => void | Callback function for when the drawer is toggled |
WizardStep
Name | Type | Default | Description |
---|---|---|---|
namerequired | React.ReactNode | The name of the step | |
canJumpTo | boolean | Enables or disables the step in the navigation. Enabled by default. | |
component | any | The component to render in the main body | |
drawerPanelContent | any | The content to render in the drawer panel (use when hasDrawer prop is set on the wizard). | |
drawerToggleButton | React.ReactNode | Custom drawer toggle button that opens the drawer. | |
enableNext | boolean | (Unused if footer is controlled) The condition needed to enable the Next button | |
hideBackButton | boolean | (Unused if footer is controlled) True to hide the Back button | |
hideCancelButton | boolean | (Unused if footer is controlled) True to hide the Cancel button | |
id | string | number | Optional identifier | |
isDisabled | boolean | Flag to disable the step in the navigation | |
isFinishedStep | boolean | Setting to true hides the side nav and footer | |
nextButtonText | React.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. | |
stepNavItemProps | React.HTMLProps<HTMLButtonElement | HTMLAnchorElement> | WizardNavItemProps | Props to pass to the WizardNavItem | |
steps | WizardStep[] | Sub steps |
CSS variables
Expand or collapse column | Selector | Variable | Value | |
---|---|---|---|---|
.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 | ||
|