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.
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:
- Add a
toggleIsExpanded
callback to the toolbar - 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.
Props
Toolbar
Name | Type | Default | Description |
---|---|---|---|
children | React.ReactNode | Content to be rendered as rows in the data toolbar | |
className | string | Classes applied to root element of the data toolbar | |
clearAllFilters | () => void | Optional callback for clearing all filters in the toolbar | |
clearFiltersButtonText | string | Text 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 | |
customChipGroupContent | React.ReactNode | Custom 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. | |
id | string | Id 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. | |
isExpanded | boolean | Flag indicating if a data toolbar toggle group's expandable content is expanded | |
isFullHeight | boolean | Flag indicating the toolbar height should expand to the full height of the container | |
isStatic | boolean | Flag indicating the toolbar is static | |
isSticky | boolean | Flag indicating the toolbar should stick to the top of its container | |
numberOfFiltersText | (numberOfFilters: number) => string | Text to display in the total number of applied filters ToolbarFilter | |
ouiaId | number | string | Value to overwrite the randomly generated data-ouia-component-id. | |
ouiaSafe | boolean | Set 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 | () => void | A callback for setting the isExpanded flag | |
usePageInsets | boolean | Flag indicating the toolbar should use the Page insets |
ToolbarContent
Name | Type | Default | Description |
---|---|---|---|
alignItems | 'start' | 'center' | 'baseline' | 'default' | Vertical alignment of children | |
alignSelf | 'start' | 'center' | 'baseline' | 'default' | Vertical alignment. | |
children | React.ReactNode | Content to be rendered as children of the content row | |
className | string | Classes applied to root element of the data toolbar content row | |
clearAllFilters | () => void | Optional callback for clearing all filters in the toolbar | |
clearFiltersButtonText | string | Text to display in the clear all filters button | |
isExpanded | boolean | false | Flag indicating if a data toolbar toggle group's expandable content is expanded |
showClearFiltersButton | boolean | false | Flag indicating that the clear all filters button should be visible |
toolbarId | string | Id 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
Name | Type | Default | Description |
---|---|---|---|
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 | |
children | React.ReactNode | Content to be rendered inside the data toolbar group | |
className | string | Classes applied to root element of the data toolbar group | |
isOverflowContainer | boolean | Flag 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. | |
variant | ToolbarGroupVariant | '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
Name | Type | Default | Description |
---|---|---|---|
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 | |
children | React.ReactNode | Content to be rendered inside the data toolbar item | |
className | string | Classes applied to root element of the data toolbar item | |
id | string | id for this data toolbar item | |
isAllExpanded | boolean | Flag indicating if the expand-all variant is expanded or not | |
isOverflowContainer | boolean | Flag 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
Name | Type | Default | Description |
---|---|---|---|
breakpointrequired | 'md' | 'lg' | 'xl' | '2xl' | Controls when filters are shown and when the toggle button is hidden. | |
toggleIconrequired | React.ReactNode | An 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. | |
chipContainerRef | React.RefObject<any> | Reference to a chip container group for filters inside the toolbar toggle group | |
clearAllFilters | () => void | Optional callback for clearing all filters in the toolbar toggle group | |
clearFiltersButtonText | string | Text to display in the clear all filters button of the toolbar toggle group | |
isExpanded | boolean | Flag indicating when toggle group is expanded for non-managed toolbar toggle groups. | |
onToggle | (event: React.MouseEvent) => void | Callback for toggle group click event for non-managed toolbar toggle groups. | |
showClearFiltersButton | boolean | Flag 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
Name | Type | Default | Description |
---|---|---|---|
categoryNamerequired | string | ToolbarChipGroup | Unique category name to be used as a label for the chip group | |
childrenrequired | React.ReactNode | Content to be rendered inside the data toolbar item associated with the chip group | |
chipGroupCollapsedText | string | Customizeable template string for the chip group. Use variable "${remaining}" for the overflow chip count. | |
chipGroupExpandedText | string | Customizable "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) => void | Callback passed by consumer used to delete a chip from the chips[] | |
deleteChipGroup | (category: string | ToolbarChipGroup) => void | Callback passed by consumer used to close the entire chip group | |
expandableChipContainerRef | React.RefObject<HTMLDivElement> | Reference to a chip container created with a custom expandable content group, for non-managed multiple toolbar toggle groups. | |
isExpanded | boolean | Flag indicating when toolbar toggle group is expanded for non-managed toolbar toggle groups. | |
showToolbarItem | boolean | true | Flag to show the toolbar item |
CSS variables
Expand or collapse column | Selector | Variable | Value | |
---|---|---|---|---|
.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-hidden-visible--Display --pf-v5-hidden-visible--visible--Display --pf-v5-c-toolbar__content-section--Display flex | ||||
.pf-v5-c-toolbar__content-section | --pf-v5-hidden-visible--visible--Display | flex | ||
--pf-v5-hidden-visible--visible--Display --pf-v5-c-toolbar__content-section--Display flex | ||||
.pf-m-hidden.pf-v5-c-toolbar__content-section | --pf-v5-hidden-visible--Display | none | ||
--pf-v5-hidden-visible--Display --pf-v5-hidden-visible--hidden--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--BackgroundColor --pf-v5-global--BackgroundColor--100 $pf-v5-global--BackgroundColor--100 $pf-v5-color-white #fff | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar--RowGap--base | 1.5rem | ||
--pf-v5-c-toolbar--RowGap--base --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar--RowGap | 1.5rem | ||
--pf-v5-c-toolbar--RowGap --pf-v5-c-toolbar--RowGap--base --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar--PaddingTop | 1rem | ||
--pf-v5-c-toolbar--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar--PaddingBottom | 1rem | ||
--pf-v5-c-toolbar--PaddingBottom --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar--item--RowGap--base | 0.25rem | ||
--pf-v5-c-toolbar--item--RowGap--base --pf-v5-global--spacer--xs $pf-v5-global--spacer--xs pf-size-prem(4px) 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__item--AlignItems --pf-v5-c-toolbar--AlignItems--base flex-start | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__item--AlignSelf | flex-start | ||
--pf-v5-c-toolbar__item--AlignSelf --pf-v5-c-toolbar--AlignItems--base 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__group--RowGap --pf-v5-c-toolbar--item--RowGap--base --pf-v5-global--spacer--xs $pf-v5-global--spacer--xs pf-size-prem(4px) 0.25rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__group--AlignItems | flex-start | ||
--pf-v5-c-toolbar__group--AlignItems --pf-v5-c-toolbar--AlignItems--base 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--m-sticky--ZIndex --pf-v5-global--ZIndex--xs $pf-v5-global--ZIndex--xs 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--m-sticky--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) | ||||
.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__content--AlignItems --pf-v5-c-toolbar--AlignItems--base flex-start | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__content--RowGap | 1.5rem | ||
--pf-v5-c-toolbar__content--RowGap --pf-v5-c-toolbar--RowGap--base --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__content--PaddingRight | 1rem | ||
--pf-v5-c-toolbar__content--PaddingRight --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__content--PaddingLeft | 1rem | ||
--pf-v5-c-toolbar__content--PaddingLeft --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 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__content-section--AlignItems --pf-v5-c-toolbar--AlignItems--base flex-start | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__content-section--RowGap | 0.25rem | ||
--pf-v5-c-toolbar__content-section--RowGap --pf-v5-c-toolbar--item--RowGap--base --pf-v5-global--spacer--xs $pf-v5-global--spacer--xs pf-size-prem(4px) 0.25rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar--m-page-insets--inset | 1rem | ||
--pf-v5-c-toolbar--m-page-insets--inset --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar--m-page-insets--xl--inset | 1.5rem | ||
--pf-v5-c-toolbar--m-page-insets--xl--inset --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 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__expandable-content--PaddingRight --pf-v5-c-toolbar__content--PaddingRight --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__expandable-content--PaddingBottom | 1rem | ||
--pf-v5-c-toolbar__expandable-content--PaddingBottom --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__expandable-content--PaddingLeft | 1rem | ||
--pf-v5-c-toolbar__expandable-content--PaddingLeft --pf-v5-c-toolbar__content--PaddingLeft --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 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__expandable-content--ZIndex --pf-v5-global--ZIndex--sm $pf-v5-global--ZIndex--sm 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__expandable-content--BoxShadow --pf-v5-global--BoxShadow--md-bottom $pf-v5-global--BoxShadow--md-bottom 0 pf-size-prem(8px) pf-size-prem(8px) pf-size-prem(-6px) rgba($pf-v5-color-black-1000, .18) 0 pf-size-prem(8px) pf-size-prem(8px) pf-size-prem(-6px) rgba(#030303, .18) 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__expandable-content--BackgroundColor --pf-v5-c-toolbar--BackgroundColor --pf-v5-global--BackgroundColor--100 $pf-v5-global--BackgroundColor--100 $pf-v5-color-white #fff | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__expandable-content--m-expanded--GridRowGap | 1.5rem | ||
--pf-v5-c-toolbar__expandable-content--m-expanded--GridRowGap --pf-v5-global--gutter--md $pf-v5-global--gutter--md $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__group--m-chip-container--MarginTop | calc(1rem * -1) | ||
--pf-v5-c-toolbar__group--m-chip-container--MarginTop calc(--pf-v5-global--spacer--md * -1) calc($pf-v5-global--spacer--md * -1) calc(pf-size-prem(16px) * -1) calc(1rem * -1) | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__group--m-chip-container__item--MarginTop | 1rem | ||
--pf-v5-c-toolbar__group--m-chip-container__item--MarginTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar--spacer--base | 1rem | ||
--pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__item--spacer | 1rem | ||
--pf-v5-c-toolbar__item--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 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__group--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__group--m-toggle-group--spacer | 0.5rem | ||
--pf-v5-c-toolbar__group--m-toggle-group--spacer --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__group--m-toggle-group--m-show--spacer | 1rem | ||
--pf-v5-c-toolbar__group--m-toggle-group--m-show--spacer --pf-v5-c-toolbar__group--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__group--m-icon-button-group--spacer | 1rem | ||
--pf-v5-c-toolbar__group--m-icon-button-group--spacer --pf-v5-c-toolbar__group--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 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__group--m-button-group--spacer --pf-v5-c-toolbar__group--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__group--m-button-group--space-items | 0.5rem | ||
--pf-v5-c-toolbar__group--m-button-group--space-items --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__group--m-filter-group--spacer | 1rem | ||
--pf-v5-c-toolbar__group--m-filter-group--spacer --pf-v5-c-toolbar__group--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 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__item--m-overflow-menu--spacer --pf-v5-c-toolbar__item--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__item--m-bulk-select--spacer | 1.5rem | ||
--pf-v5-c-toolbar__item--m-bulk-select--spacer --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 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__expand-all-icon--Transition --pf-v5-global--Transition $pf-v5-global--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__item--m-search-filter--spacer --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__item--m-chip-group--spacer | 0.5rem | ||
--pf-v5-c-toolbar__item--m-chip-group--spacer --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__item--m-label--spacer | 1rem | ||
--pf-v5-c-toolbar__item--m-label--spacer --pf-v5-c-toolbar__item--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__item--m-label--TranslateY | 0.375rem | ||
--pf-v5-c-toolbar__item--m-label--TranslateY --pf-v5-global--spacer--form-element $pf-v5-global--spacer--form-element pf-size-prem(6px) 0.375rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__item--m-label--FontWeight | 700 | ||
--pf-v5-c-toolbar__item--m-label--FontWeight --pf-v5-global--FontWeight--bold $pf-v5-global--FontWeight--bold 700 | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__item--m-form-element--spacer | 1rem | ||
--pf-v5-c-toolbar__item--m-form-element--spacer --pf-v5-c-toolbar__item--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__item--m-form-element--TranslateY | 0.375rem | ||
--pf-v5-c-toolbar__item--m-form-element--TranslateY --pf-v5-global--spacer--form-element $pf-v5-global--spacer--form-element pf-size-prem(6px) 0.375rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__item--m-form-element--FontWeight | 700 | ||
--pf-v5-c-toolbar__item--m-form-element--FontWeight --pf-v5-global--FontWeight--bold $pf-v5-global--FontWeight--bold 700 | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__item--m-form-control--TranslateY | 0.375rem | ||
--pf-v5-c-toolbar__item--m-form-control--TranslateY --pf-v5-global--spacer--form-element $pf-v5-global--spacer--form-element pf-size-prem(6px) 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__expandable-content__item--m-label--MarginBottom calc(-1 * --pf-v5-c-toolbar__expandable-content--m-expanded--GridRowGap + --pf-v5-global--spacer--sm) calc(-1 * --pf-v5-global--gutter--md + $pf-v5-global--spacer--sm) calc(-1 * $pf-v5-global--gutter--md + $pf-v5-global--spacer--sm) calc(-1 * $pf-v5-global--spacer--lg + pf-size-prem(8px)) calc(-1 * pf-size-prem(24px) + pf-size-prem(8px)) 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__expandable-content__item--m-label--FontSize --pf-v5-global--FontSize--sm $pf-v5-global--FontSize--sm pf-font-prem(14px) 0.875rem | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar__toggle--m-expanded__c-button--m-plain--Color | #151515 | ||
--pf-v5-c-toolbar__toggle--m-expanded__c-button--m-plain--Color --pf-v5-global--Color--100 $pf-v5-global--Color--100 $pf-v5-color-black-900 #151515 | ||||
.pf-v5-c-toolbar | --pf-v5-c-toolbar--c-divider--m-vertical--spacer | 1rem | ||
--pf-v5-c-toolbar--c-divider--m-vertical--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 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__content--PaddingRight --pf-v5-c-toolbar--m-page-insets--inset --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar.pf-m-page-insets | --pf-v5-c-toolbar__content--PaddingLeft | 1rem | ||
--pf-v5-c-toolbar__content--PaddingLeft --pf-v5-c-toolbar--m-page-insets--inset --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar.pf-m-full-height | --pf-v5-c-toolbar--PaddingTop | 0 | ||
--pf-v5-c-toolbar--PaddingTop --pf-v5-c-toolbar--m-full-height--PaddingTop 0 | ||||
.pf-v5-c-toolbar.pf-m-full-height | --pf-v5-c-toolbar--PaddingBottom | 0 | ||
--pf-v5-c-toolbar--PaddingBottom --pf-v5-c-toolbar--m-full-height--PaddingTop 0 | ||||
.pf-v5-c-toolbar.pf-m-full-height | --pf-v5-c-toolbar__item--Display | flex | ||
--pf-v5-c-toolbar__item--Display --pf-v5-c-toolbar--m-full-height__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__item--AlignItems --pf-v5-c-toolbar--m-full-height__item--AlignItems center | ||||
.pf-v5-c-toolbar__content-section > .pf-v5-c-divider | --pf-v5-c-toolbar--spacer | 1rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar--c-divider--m-vertical--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 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__group--AlignItems --pf-v5-c-toolbar--m-align-items-center--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--AlignItems --pf-v5-c-toolbar--m-align-items-center--AlignItems center | ||||
.pf-v5-c-toolbar__content-section.pf-m-align-items-baseline | --pf-v5-c-toolbar__group--AlignItems | baseline | ||
--pf-v5-c-toolbar__group--AlignItems --pf-v5-c-toolbar--m-align-items-baseline--AlignItems baseline | ||||
.pf-v5-c-toolbar__content-section.pf-m-align-self-center | --pf-v5-c-toolbar__group--AlignSelf | undefined | ||
--pf-v5-c-toolbar__group--AlignSelf --pf-v5-c-toolbar--m-align-self-center--AlignItems undefined | ||||
.pf-v5-c-toolbar__content-section.pf-m-align-self-baseline | --pf-v5-c-toolbar__group--AlignSelf | undefined | ||
--pf-v5-c-toolbar__group--AlignSelf --pf-v5-c-toolbar--m-align-self-baseline--AlignItems undefined | ||||
.pf-v5-c-toolbar__group | --pf-v5-c-toolbar--spacer | 1rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar__group--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar__group | --pf-v5-hidden-visible--visible--Display | flex | ||
--pf-v5-hidden-visible--visible--Display --pf-v5-c-toolbar__group--Display flex | ||||
.pf-v5-c-toolbar__group.pf-m-button-group | --pf-v5-c-toolbar--spacer | 1rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar__group--m-button-group--spacer --pf-v5-c-toolbar__group--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar__group.pf-m-button-group > * | --pf-v5-c-toolbar--spacer | 0.5rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar__group--m-button-group--space-items --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-toolbar__group.pf-m-icon-button-group | --pf-v5-c-toolbar--spacer | 1rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar__group--m-icon-button-group--spacer --pf-v5-c-toolbar__group--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar__group.pf-m-icon-button-group > * | --pf-v5-c-toolbar--spacer | 0 | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar__group--m-icon-button-group--space-items 0 | ||||
.pf-v5-c-toolbar__group.pf-m-filter-group | --pf-v5-c-toolbar--spacer | 1rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar__group--m-filter-group--spacer --pf-v5-c-toolbar__group--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar__group.pf-m-filter-group > * | --pf-v5-c-toolbar--spacer | 0 | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar__group--m-filter-group--space-items 0 | ||||
.pf-v5-c-toolbar__group.pf-m-toggle-group | --pf-v5-c-toolbar--spacer | 0.5rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar__group--m-toggle-group--spacer --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 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--spacer --pf-v5-c-toolbar__item--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar__item | --pf-v5-c-toolbar__item--Width--base | auto | ||
--pf-v5-c-toolbar__item--Width--base --pf-v5-c-toolbar__item--Width auto | ||||
.pf-v5-c-toolbar__item | --pf-v5-c-toolbar__item--MinWidth--base | undefined | ||
--pf-v5-c-toolbar__item--MinWidth--base --pf-v5-c-toolbar__item--MinWidth undefined | ||||
.pf-v5-c-toolbar__item | --pf-v5-hidden-visible--visible--Display | flex | ||
--pf-v5-hidden-visible--visible--Display --pf-v5-c-toolbar__item--Display flex | ||||
.pf-v5-c-toolbar__item.pf-m-overflow-menu | --pf-v5-c-toolbar--spacer | 1rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar__item--m-overflow-menu--spacer --pf-v5-c-toolbar__item--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar__item.pf-m-bulk-select | --pf-v5-c-toolbar--spacer | 1.5rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar__item--m-bulk-select--spacer --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 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__expand-all-icon--Rotate --pf-v5-c-toolbar__item--m-expand-all--m-expanded__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--spacer --pf-v5-c-toolbar__item--m-search-filter--spacer --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-toolbar__item.pf-m-chip-group | --pf-v5-c-toolbar--spacer | 0.5rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar__item--m-chip-group--spacer --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-toolbar__item.pf-m-label | --pf-v5-c-toolbar--spacer | 1rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar__item--m-label--spacer --pf-v5-c-toolbar__item--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar__item.pf-m-form-element | --pf-v5-c-toolbar--spacer | 1rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-c-toolbar__item--m-form-element--spacer --pf-v5-c-toolbar__item--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 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-hidden-visible--visible--Display --pf-v5-c-toolbar__content--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--spacer --pf-v5-c-toolbar__item--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 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--spacer --pf-v5-c-toolbar__group--spacer --pf-v5-c-toolbar--spacer--base --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 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--spacer --pf-v5-c-toolbar__group--m-toggle-group--m-show--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--spacer --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 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--spacer --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 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--spacer --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 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--spacer --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-toolbar .pf-m-spacer-sm:last-child | --pf-v5-c-toolbar--spacer | 0.5rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-toolbar .pf-m-spacer-md | --pf-v5-c-toolbar--spacer | 1rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar .pf-m-spacer-md:last-child | --pf-v5-c-toolbar--spacer | 1rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar .pf-m-spacer-lg | --pf-v5-c-toolbar--spacer | 1.5rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-toolbar .pf-m-spacer-lg:last-child | --pf-v5-c-toolbar--spacer | 1.5rem | ||
--pf-v5-c-toolbar--spacer --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 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__content--PaddingRight --pf-v5-c-toolbar--inset 0 | ||||
.pf-v5-c-toolbar.pf-m-inset-none | --pf-v5-c-toolbar__content--PaddingLeft | 0 | ||
--pf-v5-c-toolbar__content--PaddingLeft --pf-v5-c-toolbar--inset 0 | ||||
.pf-v5-c-toolbar.pf-m-inset-sm | --pf-v5-c-toolbar--inset | 0.5rem | ||
--pf-v5-c-toolbar--inset --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-toolbar.pf-m-inset-sm | --pf-v5-c-toolbar__content--PaddingRight | 0.5rem | ||
--pf-v5-c-toolbar__content--PaddingRight --pf-v5-c-toolbar--inset --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-toolbar.pf-m-inset-sm | --pf-v5-c-toolbar__content--PaddingLeft | 0.5rem | ||
--pf-v5-c-toolbar__content--PaddingLeft --pf-v5-c-toolbar--inset --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-toolbar.pf-m-inset-md | --pf-v5-c-toolbar--inset | 1rem | ||
--pf-v5-c-toolbar--inset --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar.pf-m-inset-md | --pf-v5-c-toolbar__content--PaddingRight | 1rem | ||
--pf-v5-c-toolbar__content--PaddingRight --pf-v5-c-toolbar--inset --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar.pf-m-inset-md | --pf-v5-c-toolbar__content--PaddingLeft | 1rem | ||
--pf-v5-c-toolbar__content--PaddingLeft --pf-v5-c-toolbar--inset --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-toolbar.pf-m-inset-lg | --pf-v5-c-toolbar--inset | 1.5rem | ||
--pf-v5-c-toolbar--inset --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-toolbar.pf-m-inset-lg | --pf-v5-c-toolbar__content--PaddingRight | 1.5rem | ||
--pf-v5-c-toolbar__content--PaddingRight --pf-v5-c-toolbar--inset --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-toolbar.pf-m-inset-lg | --pf-v5-c-toolbar__content--PaddingLeft | 1.5rem | ||
--pf-v5-c-toolbar__content--PaddingLeft --pf-v5-c-toolbar--inset --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-toolbar.pf-m-inset-xl | --pf-v5-c-toolbar--inset | 2rem | ||
--pf-v5-c-toolbar--inset --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
.pf-v5-c-toolbar.pf-m-inset-xl | --pf-v5-c-toolbar__content--PaddingRight | 2rem | ||
--pf-v5-c-toolbar__content--PaddingRight --pf-v5-c-toolbar--inset --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
.pf-v5-c-toolbar.pf-m-inset-xl | --pf-v5-c-toolbar__content--PaddingLeft | 2rem | ||
--pf-v5-c-toolbar__content--PaddingLeft --pf-v5-c-toolbar--inset --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
.pf-v5-c-toolbar.pf-m-inset-2xl | --pf-v5-c-toolbar--inset | 3rem | ||
--pf-v5-c-toolbar--inset --pf-v5-global--spacer--2xl $pf-v5-global--spacer--2xl pf-size-prem(48px) 3rem | ||||
.pf-v5-c-toolbar.pf-m-inset-2xl | --pf-v5-c-toolbar__content--PaddingRight | 3rem | ||
--pf-v5-c-toolbar__content--PaddingRight --pf-v5-c-toolbar--inset --pf-v5-global--spacer--2xl $pf-v5-global--spacer--2xl pf-size-prem(48px) 3rem | ||||
.pf-v5-c-toolbar.pf-m-inset-2xl | --pf-v5-c-toolbar__content--PaddingLeft | 3rem | ||
--pf-v5-c-toolbar__content--PaddingLeft --pf-v5-c-toolbar--inset --pf-v5-global--spacer--2xl $pf-v5-global--spacer--2xl pf-size-prem(48px) 3rem | ||||
.pf-v5-c-toolbar__content-section > :last-child | --pf-v5-c-toolbar--spacer | 0 |
View source on GitHub