PatternFly

Toolbar

A toolbar allows a user to manage and manipulate a data set. Data can be presented in any valid presentation, a table, a list, or a data visualization (chart), for example. The toolbar responsively accommodates controls and displays applied filters in chip groups.

Examples

Toolbar items

A toolbar can contain multiple toolbar items, like filters and buttons.

Note: This example does not demonstrate responsive toolbar behavior. Responsive toolbars are shown in the examples with toggle groups and filters.


Toolbar item spacers

You may adjust the space between toolbar items to arrange them into groups. Read our spacers documentation to learn more about using spacers.

Items are spaced “16px” apart by default. To adjust the size of the space between items, use the spacer property of each <ToolbarItem>. You can set the spacer value at multiple breakpoints, including "default", "md", "lg", "xl", and "2xl". Available spacer values include "spacerNone", "spacerSm", "spacerMd", or "spacerLg" into each breakpoint.



Toolbar items with adjusted widths

You can adjust the width of toolbar items so that they better fit the size of their container.

The default width of a toolbar item is “100px”. To adjust an item’s width, use the widths property of the <ToolbarItem>. You can set the “px” value at multiple breakpoints, including "default", "sm", "md", "lg, "xl", and "2xl".

With adjusted inset

To adjust a toolbar’s inset, use the inset property. You can set the inset value at multiple breakpoints, including "default", "md", "lg, "xl", and "2xl". Inset values include “insetNone”, “insetSm”, “insetMd”, “insetLg”, “insetXl”, and “inset2xl”.



Sticky toolbar

To lock a toolbar and prevent it from scrolling with other content, use a sticky toolbar.

In the following example, toggle the "is toolbar sticky" checkbox to see the difference between a sticky and non-sticky toolbar.

  • item 0
  • item 2
  • item 4
  • item 6
  • item 8
  • item 10
  • item 12
  • item 14
  • item 16
  • item 18
  • item 20
  • item 22
  • item 24
  • item 26
  • item 28

With groups of items

You can group similar items together to create desired associations and to enable items to respond to changes in viewport width together.

Note: This example does not demonstrate responsive toolbar behavior. Responsive toolbars are shown in the examples with toggle groups and filters.

Examples with toggle groups and filters

The following examples use toggle groups to allow for more responsive and complex toolbars with multiple items and groups of items. To visualize responsive toolbar behavior in the following examples, resize the browser to a smaller screen width.

Component managed toggle groups

A toggle group allows you to collapse a set of items into an overlay panel at a certain breakpoint. For example, when a toggle group contains filter controls, its contents will collapse into an overlay panel when the toolbar adapts to a change in the viewport size. The contents can be toggled by selecting the filter icon in the overlay panel.

Consumer managed toggle groups

To manually create the expanded state of the toggle group for smaller screen widths:

  1. Add a toggleIsExpanded callback to the toolbar
  2. Pass a boolean into the isExpanded property of the toolbar

Note: The toggle group is aware of the consumer provided breakpoint, the expandable content is not. If the expandable content is expanded and the screen width surpasses that of the breakpoint, the expandable content is not aware of that and will remain open. Be sure to consider and handle this in your implementation.

With filters

You can add filters to a toolbar to let users filter the content that a toolbar manages. When a toolbar is filtered, it will expand in height to make space for a row of filter chips and a "Clear all filters" button. Upon clearing the applied filters, the toolbar will return to its default height.

The <ToolbarFilter> component expects applied filters and a delete chip handler to be passed in as properties. Pass in a deleteChipGroup property to close the entire chip group. Once close, the rendering of chips will be handled responsively by the toolbar.

With custom chip group content

To customize the chip groups generated by toolbar filters, use the customChipGroupContent property on the <Toolbar>. This property will remove the default clear all filters button.

Stacked example

When all of a toolbar's required elements cannot fit in a single line, you can split toolbar items into multiple rows.


1 - 20 of 37

Props

Toolbar

*required
NameTypeDefaultDescription
childrenReact.ReactNodeContent to be rendered as rows in the data toolbar
classNamestringClasses applied to root element of the data toolbar
clearAllFilters() => voidOptional callback for clearing all filters in the toolbar
clearFiltersButtonTextstringText to display in the clear all filters button
collapseListedFiltersBreakpoint'all' | 'md' | 'lg' | 'xl' | '2xl'The breakpoint at which the listed filters in chip groups are collapsed down to a summary
customChipGroupContentReact.ReactNodeCustom content appended to the filter generated chip group. To maintain spacing and styling, each node should be wrapped in a ToolbarItem or ToolbarGroup. This property will remove the default "Clear all filters" button.
idstringId of the data toolbar
inset{ default?: 'insetNone' | 'insetSm' | 'insetMd' | 'insetLg' | 'insetXl' | 'inset2xl'; sm?: 'insetNone' | 'insetSm' | 'insetMd' | 'insetLg' | 'insetXl' | 'inset2xl'; md?: 'insetNone' | 'insetSm' | 'insetMd' | 'insetLg' | 'insetXl' | 'inset2xl'; lg?: 'insetNone' | 'insetSm' | 'insetMd' | 'insetLg' | 'insetXl' | 'inset2xl'; xl?: 'insetNone' | 'insetSm' | 'insetMd' | 'insetLg' | 'insetXl' | 'inset2xl'; '2xl'?: 'insetNone' | 'insetSm' | 'insetMd' | 'insetLg' | 'insetXl' | 'inset2xl'; }Insets at various breakpoints.
isExpandedbooleanFlag indicating if a data toolbar toggle group's expandable content is expanded
isFullHeightbooleanFlag indicating the toolbar height should expand to the full height of the container
isStaticbooleanFlag indicating the toolbar is static
isStickybooleanFlag indicating the toolbar should stick to the top of its container
numberOfFiltersText(numberOfFilters: number) => stringText to display in the total number of applied filters ToolbarFilter
ouiaIdnumber | stringValue to overwrite the randomly generated data-ouia-component-id.
ouiaSafebooleanSet the value of data-ouia-safe. Only set to true when the component is in a static state, i.e. no animations are occurring. At all other times, this value must be false.
toggleIsExpanded() => voidA callback for setting the isExpanded flag
usePageInsetsbooleanFlag indicating the toolbar should use the Page insets

ToolbarContent

*required
NameTypeDefaultDescription
alignItems'start' | 'center' | 'baseline' | 'default'Vertical alignment of children
alignSelf'start' | 'center' | 'baseline' | 'default'Vertical alignment.
childrenReact.ReactNodeContent to be rendered as children of the content row
classNamestringClasses applied to root element of the data toolbar content row
clearAllFilters() => voidOptional callback for clearing all filters in the toolbar
clearFiltersButtonTextstringText to display in the clear all filters button
isExpandedbooleanfalseFlag indicating if a data toolbar toggle group's expandable content is expanded
showClearFiltersButtonbooleanfalseFlag indicating that the clear all filters button should be visible
toolbarIdstringId of the parent Toolbar component
visibility{ default?: 'hidden' | 'visible'; md?: 'hidden' | 'visible'; lg?: 'hidden' | 'visible'; xl?: 'hidden' | 'visible'; '2xl'?: 'hidden' | 'visible'; }Visibility at various breakpoints.

ToolbarGroup

*required
NameTypeDefaultDescription
align{ default?: 'alignRight' | 'alignLeft'; md?: 'alignRight' | 'alignLeft'; lg?: 'alignRight' | 'alignLeft'; xl?: 'alignRight' | 'alignLeft'; '2xl'?: 'alignRight' | 'alignLeft'; }Applies to a child of a flex layout, and aligns that child (and any adjacent children on the other side of it) to one side of the main axis
alignItems'start' | 'center' | 'baseline' | 'default'Vertical alignment of children
alignSelf'start' | 'center' | 'baseline' | 'default'Vertical alignment
childrenReact.ReactNodeContent to be rendered inside the data toolbar group
classNamestringClasses applied to root element of the data toolbar group
isOverflowContainerbooleanFlag that modifies the toolbar group to hide overflow and respond to available space. Used for horizontal navigation.
spaceItems{ default?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; md?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; lg?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; xl?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; '2xl'?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; }Space items at various breakpoints.
spacer{ default?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; md?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; lg?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; xl?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; '2xl'?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; }Spacers at various breakpoints.
variantToolbarGroupVariant | 'filter-group' | 'icon-button-group' | 'button-group'A type modifier which modifies spacing specifically depending on the type of group
visibility{ default?: 'hidden' | 'visible'; md?: 'hidden' | 'visible'; lg?: 'hidden' | 'visible'; xl?: 'hidden' | 'visible'; '2xl'?: 'hidden' | 'visible'; }Visibility at various breakpoints.

ToolbarItem

*required
NameTypeDefaultDescription
align{ default?: 'alignRight' | 'alignLeft'; md?: 'alignRight' | 'alignLeft'; lg?: 'alignRight' | 'alignLeft'; xl?: 'alignRight' | 'alignLeft'; '2xl'?: 'alignRight' | 'alignLeft'; }Applies to a child of a flex layout, and aligns that child (and any adjacent children on the other side of it) to one side of the main axis
alignItems'start' | 'center' | 'baseline' | 'default'Vertical alignment of children
alignSelf'start' | 'center' | 'baseline' | 'default'Vertical alignment
childrenReact.ReactNodeContent to be rendered inside the data toolbar item
classNamestringClasses applied to root element of the data toolbar item
idstringid for this data toolbar item
isAllExpandedbooleanFlag indicating if the expand-all variant is expanded or not
isOverflowContainerbooleanFlag that modifies the toolbar item to hide overflow and respond to available space. Used for horizontal navigation.
spacer{ default?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; md?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; lg?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; xl?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; '2xl'?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; }Spacers at various breakpoints.
variant| ToolbarItemVariant | 'bulk-select' | 'overflow-menu' | 'pagination' | 'search-filter' | 'label' | 'chip-group' | 'separator' | 'expand-all'A type modifier which modifies spacing specifically depending on the type of item
visibility{ default?: 'hidden' | 'visible'; md?: 'hidden' | 'visible'; lg?: 'hidden' | 'visible'; xl?: 'hidden' | 'visible'; '2xl'?: 'hidden' | 'visible'; }Visibility at various breakpoints.
widths{ default?: string; sm?: string; md?: string; lg?: string; xl?: string; '2xl'?: string; }Widths at various breakpoints.

ToolbarToggleGroup

*required
NameTypeDefaultDescription
breakpointrequired'md' | 'lg' | 'xl' | '2xl'Controls when filters are shown and when the toggle button is hidden.
toggleIconrequiredReact.ReactNodeAn icon to be rendered when the toggle group has collapsed down
alignment{ default?: 'alignRight' | 'alignLeft'; md?: 'alignRight' | 'alignLeft'; lg?: 'alignRight' | 'alignLeft'; xl?: 'alignRight' | 'alignLeft'; '2xl'?: 'alignRight' | 'alignLeft'; }Alignment at various breakpoints.
chipContainerRefReact.RefObject<any>Reference to a chip container group for filters inside the toolbar toggle group
clearAllFilters() => voidOptional callback for clearing all filters in the toolbar toggle group
clearFiltersButtonTextstringText to display in the clear all filters button of the toolbar toggle group
isExpandedbooleanFlag indicating when toggle group is expanded for non-managed toolbar toggle groups.
onToggle(event: React.MouseEvent) => voidCallback for toggle group click event for non-managed toolbar toggle groups.
showClearFiltersButtonbooleanFlag indicating that the clear all filters button should be visible in the toolbar toggle group
spaceItems{ default?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; md?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; lg?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; xl?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; '2xl'?: 'spaceItemsNone' | 'spaceItemsSm' | 'spaceItemsMd' | 'spaceItemsLg'; }Space items at various breakpoints.
spacer{ default?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; md?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; lg?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; xl?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; '2xl'?: 'spacerNone' | 'spacerSm' | 'spacerMd' | 'spacerLg'; }Spacers at various breakpoints.
visibility{ default?: 'hidden' | 'visible'; md?: 'hidden' | 'visible'; lg?: 'hidden' | 'visible'; xl?: 'hidden' | 'visible'; '2xl'?: 'hidden' | 'visible'; }Visibility at various breakpoints.

ToolbarFilter

*required
NameTypeDefaultDescription
categoryNamerequiredstring | ToolbarChipGroupUnique category name to be used as a label for the chip group
childrenrequiredReact.ReactNodeContent to be rendered inside the data toolbar item associated with the chip group
chipGroupCollapsedTextstringCustomizeable template string for the chip group. Use variable "${remaining}" for the overflow chip count.
chipGroupExpandedTextstringCustomizable "Show Less" text string for the chip group
chips(string | ToolbarChip)[][]An array of strings to be displayed as chips in the expandable content
deleteChip(category: string | ToolbarChipGroup, chip: ToolbarChip | string) => voidCallback passed by consumer used to delete a chip from the chips[]
deleteChipGroup(category: string | ToolbarChipGroup) => voidCallback passed by consumer used to close the entire chip group
expandableChipContainerRefReact.RefObject<HTMLDivElement>Reference to a chip container created with a custom expandable content group, for non-managed multiple toolbar toggle groups.
isExpandedbooleanFlag indicating when toolbar toggle group is expanded for non-managed toolbar toggle groups.
showToolbarItembooleantrueFlag to show the toolbar item

CSS variables

Expand or collapse columnSelectorVariableValue
.pf-v5-c-toolbar__content-section--pf-v5-hidden-visible--hidden--Display
none
.pf-v5-c-toolbar__content-section--pf-v5-hidden-visible--Display
flex
.pf-v5-c-toolbar__content-section--pf-v5-hidden-visible--visible--Display
flex
.pf-m-hidden.pf-v5-c-toolbar__content-section--pf-v5-hidden-visible--Display
none
.pf-v5-c-toolbar--pf-v5-c-toolbar--AlignItems--base
flex-start
.pf-v5-c-toolbar--pf-v5-c-toolbar--BackgroundColor
#fff
.pf-v5-c-toolbar--pf-v5-c-toolbar--RowGap--base
1.5rem
.pf-v5-c-toolbar--pf-v5-c-toolbar--RowGap
1.5rem
.pf-v5-c-toolbar--pf-v5-c-toolbar--PaddingTop
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar--PaddingBottom
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar--item--RowGap--base
0.25rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--Display
flex
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--MinWidth--base
auto
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--AlignItems
flex-start
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--AlignSelf
flex-start
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--Display
flex
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--RowGap
0.25rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--AlignItems
flex-start
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--AlignSelf
auto
.pf-v5-c-toolbar--pf-v5-c-toolbar--m-sticky--ZIndex
100
.pf-v5-c-toolbar--pf-v5-c-toolbar--m-sticky--BoxShadow
0 0.125rem 0.25rem -0.0625rem rgba(3, 3, 3, 0.16)
.pf-v5-c-toolbar--pf-v5-c-toolbar--m-align-items-center--AlignItems
center
.pf-v5-c-toolbar--pf-v5-c-toolbar--m-align-items-baseline--AlignItems
baseline
.pf-v5-c-toolbar--pf-v5-c-toolbar--m-align-self-center--AlignSelf
center
.pf-v5-c-toolbar--pf-v5-c-toolbar--m-align-self-baseline--AlignSelf
baseline
.pf-v5-c-toolbar--pf-v5-c-toolbar__content--Display
flex
.pf-v5-c-toolbar--pf-v5-c-toolbar__content--AlignItems
flex-start
.pf-v5-c-toolbar--pf-v5-c-toolbar__content--RowGap
1.5rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__content--PaddingRight
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__content--PaddingLeft
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__content-section--Display
flex
.pf-v5-c-toolbar--pf-v5-c-toolbar__content-section--AlignItems
flex-start
.pf-v5-c-toolbar--pf-v5-c-toolbar__content-section--RowGap
0.25rem
.pf-v5-c-toolbar--pf-v5-c-toolbar--m-page-insets--inset
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar--m-page-insets--xl--inset
1.5rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content--Display
grid
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content--PaddingTop
0
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content--PaddingRight
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content--PaddingBottom
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content--PaddingLeft
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content--lg--PaddingRight
0
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content--lg--PaddingBottom
0
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content--lg--PaddingLeft
0
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content--ZIndex
200
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content--BoxShadow
0 0.5rem 0.5rem -0.375rem rgba(3, 3, 3, 0.18)
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content--BackgroundColor
#fff
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content--m-expanded--GridRowGap
1.5rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--m-chip-container--MarginTop
calc(1rem * -1)
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--m-chip-container__item--MarginTop
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar--spacer--base
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--spacer
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--Width
auto
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--spacer
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--m-toggle-group--spacer
0.5rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--m-toggle-group--m-show--spacer
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--m-icon-button-group--spacer
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--m-icon-button-group--space-items
0
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--m-button-group--spacer
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--m-button-group--space-items
0.5rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--m-filter-group--spacer
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__group--m-filter-group--space-items
0
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--m-overflow-menu--spacer
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--m-bulk-select--spacer
1.5rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__expand-all-icon--Rotate
0
.pf-v5-c-toolbar--pf-v5-c-toolbar__expand-all-icon--Transition
all 250ms cubic-bezier(.42, 0, .58, 1)
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--m-expand-all--m-expanded__expand-all-icon--Rotate
90deg
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--m-search-filter--spacer
0.5rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--m-chip-group--spacer
0.5rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--m-label--spacer
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--m-label--TranslateY
0.375rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--m-label--FontWeight
700
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--m-form-element--spacer
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--m-form-element--TranslateY
0.375rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--m-form-element--FontWeight
700
.pf-v5-c-toolbar--pf-v5-c-toolbar__item--m-form-control--TranslateY
0.375rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content__item--m-label--MarginBottom
calc(-1 * 1.5rem + 0.5rem)
.pf-v5-c-toolbar--pf-v5-c-toolbar__expandable-content__item--m-label--FontSize
0.875rem
.pf-v5-c-toolbar--pf-v5-c-toolbar__toggle--m-expanded__c-button--m-plain--Color
#151515
.pf-v5-c-toolbar--pf-v5-c-toolbar--c-divider--m-vertical--spacer
1rem
.pf-v5-c-toolbar--pf-v5-c-toolbar--m-full-height--PaddingTop
0
.pf-v5-c-toolbar--pf-v5-c-toolbar--m-full-height--PaddingBottom
0
.pf-v5-c-toolbar--pf-v5-c-toolbar--m-full-height__item--Display
flex
.pf-v5-c-toolbar--pf-v5-c-toolbar--m-full-height__item--AlignItems
center
.pf-v5-c-toolbar.pf-m-page-insets--pf-v5-c-toolbar__content--PaddingRight
1rem
.pf-v5-c-toolbar.pf-m-page-insets--pf-v5-c-toolbar__content--PaddingLeft
1rem
.pf-v5-c-toolbar.pf-m-full-height--pf-v5-c-toolbar--PaddingTop
0
.pf-v5-c-toolbar.pf-m-full-height--pf-v5-c-toolbar--PaddingBottom
0
.pf-v5-c-toolbar.pf-m-full-height--pf-v5-c-toolbar__item--Display
flex
.pf-v5-c-toolbar.pf-m-full-height :where(.pf-v5-c-toolbar__item)--pf-v5-c-toolbar__item--AlignItems
center
.pf-v5-c-toolbar__content-section > .pf-v5-c-divider--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar__content-section > .pf-v5-c-divider.pf-m-vertical:last-child--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar__content-section.pf-m-align-items-center--pf-v5-c-toolbar__group--AlignItems
center
.pf-v5-c-toolbar__content-section.pf-m-align-items-center--pf-v5-c-toolbar__content-section--AlignItems
center
.pf-v5-c-toolbar__content-section.pf-m-align-items-baseline--pf-v5-c-toolbar__group--AlignItems
baseline
.pf-v5-c-toolbar__content-section.pf-m-align-self-center--pf-v5-c-toolbar__group--AlignSelf
undefined
.pf-v5-c-toolbar__content-section.pf-m-align-self-baseline--pf-v5-c-toolbar__group--AlignSelf
undefined
.pf-v5-c-toolbar__group--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar__group--pf-v5-hidden-visible--visible--Display
flex
.pf-v5-c-toolbar__group.pf-m-button-group--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar__group.pf-m-button-group > *--pf-v5-c-toolbar--spacer
0.5rem
.pf-v5-c-toolbar__group.pf-m-icon-button-group--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar__group.pf-m-icon-button-group > *--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar__group.pf-m-filter-group--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar__group.pf-m-filter-group > *--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar__group.pf-m-toggle-group--pf-v5-c-toolbar--spacer
0.5rem
.pf-v5-c-toolbar__group:last-child--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar__item--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar__item--pf-v5-c-toolbar__item--Width--base
auto
.pf-v5-c-toolbar__item--pf-v5-c-toolbar__item--MinWidth--base
undefined
.pf-v5-c-toolbar__item--pf-v5-hidden-visible--visible--Display
flex
.pf-v5-c-toolbar__item.pf-m-overflow-menu--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar__item.pf-m-bulk-select--pf-v5-c-toolbar--spacer
1.5rem
.pf-v5-c-toolbar__item.pf-m-expand-all.pf-m-expanded--pf-v5-c-toolbar__expand-all-icon--Rotate
90deg
.pf-v5-c-toolbar__item.pf-m-search-filter--pf-v5-c-toolbar--spacer
0.5rem
.pf-v5-c-toolbar__item.pf-m-chip-group--pf-v5-c-toolbar--spacer
0.5rem
.pf-v5-c-toolbar__item.pf-m-label--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar__item.pf-m-form-element--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar__item:last-child--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar__content--pf-v5-hidden-visible--visible--Display
flex
.pf-v5-c-toolbar__expandable-content .pf-v5-c-toolbar__group--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar__content.pf-m-chip-container .pf-v5-c-toolbar__item--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar__content.pf-m-chip-container .pf-v5-c-toolbar__item--pf-v5-c-toolbar__item--AlignSelf
auto
.pf-v5-c-toolbar__content.pf-m-chip-container .pf-v5-c-toolbar__group--pf-v5-c-toolbar__group--AlignItems
center
.pf-v5-c-toolbar__content.pf-m-chip-container .pf-v5-c-toolbar__group--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar__content.pf-m-chip-container .pf-v5-c-toolbar__group:last-child--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar .pf-v5-c-chip-group:last-child--pf-v5-c-chip-group--MarginRight
0
.pf-v5-c-toolbar .pf-v5-c-chip-group li:last-child--pf-v5-c-chip-group__li--m-toolbar--MarginRight
0
.pf-m-toggle-group.pf-m-show--pf-v5-c-toolbar--spacer
.pf-v5-c-toolbar .pf-m-space-items-none > *--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar .pf-m-space-items-none > :last-child--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar .pf-m-space-items-sm > *--pf-v5-c-toolbar--spacer
0.5rem
.pf-v5-c-toolbar .pf-m-space-items-sm > :last-child--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar .pf-m-space-items-md > *--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar .pf-m-space-items-md > :last-child--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar .pf-m-space-items-lg > *--pf-v5-c-toolbar--spacer
1.5rem
.pf-v5-c-toolbar .pf-m-space-items-lg > :last-child--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar .pf-m-spacer-none--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar .pf-m-spacer-none:last-child--pf-v5-c-toolbar--spacer
0
.pf-v5-c-toolbar .pf-m-spacer-sm--pf-v5-c-toolbar--spacer
0.5rem
.pf-v5-c-toolbar .pf-m-spacer-sm:last-child--pf-v5-c-toolbar--spacer
0.5rem
.pf-v5-c-toolbar .pf-m-spacer-md--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar .pf-m-spacer-md:last-child--pf-v5-c-toolbar--spacer
1rem
.pf-v5-c-toolbar .pf-m-spacer-lg--pf-v5-c-toolbar--spacer
1.5rem
.pf-v5-c-toolbar .pf-m-spacer-lg:last-child--pf-v5-c-toolbar--spacer
1.5rem
.pf-v5-c-toolbar.pf-m-inset-none--pf-v5-c-toolbar--inset
0
.pf-v5-c-toolbar.pf-m-inset-none--pf-v5-c-toolbar__content--PaddingRight
0
.pf-v5-c-toolbar.pf-m-inset-none--pf-v5-c-toolbar__content--PaddingLeft
0
.pf-v5-c-toolbar.pf-m-inset-sm--pf-v5-c-toolbar--inset
0.5rem
.pf-v5-c-toolbar.pf-m-inset-sm--pf-v5-c-toolbar__content--PaddingRight
0.5rem
.pf-v5-c-toolbar.pf-m-inset-sm--pf-v5-c-toolbar__content--PaddingLeft
0.5rem
.pf-v5-c-toolbar.pf-m-inset-md--pf-v5-c-toolbar--inset
1rem
.pf-v5-c-toolbar.pf-m-inset-md--pf-v5-c-toolbar__content--PaddingRight
1rem
.pf-v5-c-toolbar.pf-m-inset-md--pf-v5-c-toolbar__content--PaddingLeft
1rem
.pf-v5-c-toolbar.pf-m-inset-lg--pf-v5-c-toolbar--inset
1.5rem
.pf-v5-c-toolbar.pf-m-inset-lg--pf-v5-c-toolbar__content--PaddingRight
1.5rem
.pf-v5-c-toolbar.pf-m-inset-lg--pf-v5-c-toolbar__content--PaddingLeft
1.5rem
.pf-v5-c-toolbar.pf-m-inset-xl--pf-v5-c-toolbar--inset
2rem
.pf-v5-c-toolbar.pf-m-inset-xl--pf-v5-c-toolbar__content--PaddingRight
2rem
.pf-v5-c-toolbar.pf-m-inset-xl--pf-v5-c-toolbar__content--PaddingLeft
2rem
.pf-v5-c-toolbar.pf-m-inset-2xl--pf-v5-c-toolbar--inset
3rem
.pf-v5-c-toolbar.pf-m-inset-2xl--pf-v5-c-toolbar__content--PaddingRight
3rem
.pf-v5-c-toolbar.pf-m-inset-2xl--pf-v5-c-toolbar__content--PaddingLeft
3rem
.pf-v5-c-toolbar__content-section > :last-child--pf-v5-c-toolbar--spacer
0

View source on GitHub