Examples
Basic cards
Basic cards typically have a <CardTitle>
, <CardBody>
and <CardFooter>
. You may omit these components as needed, but it is recommended to at least include a <CardBody>
to provide details about the card item.
Modifiers
You can further modify the styling of the card's content by using the properties outlined below. In this example, you can enable each modifier by selecting its respective checkbox.
Most modifiers can be used in combination with each other, except for isCompact
and isLarge
, since they are contradictory.
Modifier | Description |
---|---|
isCompact | Modifies the card to include compact styling. Should not be used with isLarge. |
isFlat | Modifies the card to include flat styling. |
isRounded | Modifies the card to include rounded border styling. |
isLarge | Modifies the card to be large. Should not be used with isCompact. |
isFullHeight | Modifies the card so that it fills the total available height of its container. |
isPlain | Modifies the card to include plain styling, which removes the border and background. |
Header images and actions
You can include header actions with the actions
property of <CardHeader>
. The following example includes an image using the Brand component, and also includes a kebab dropdown and a checkbox in <CardHeader>
actions.
The actions
property for <CardHeader>
includes the hasNoOffset
property, which is false
by default. When hasNoOffset
is false
, a negative margin is applied to help align default-sized card titles with card actions.
You may use hasNoOffset
to remove this negative margin, which better aligns card actions in implementations that use large card titles or tall header images, for example.
Select the "actions hasNoOffset" checkbox in the example below to illustrate this behavior.
Title inline with images and actions
Moving <CardTitle>
within the <CardHeader>
will style it inline with any images or actions.
Card header without title
Card actions can be placed in the card header even without a <CardTitle>
.
Images can also be placed in the card header without a <CardTitle>
.
With HTML heading element
You may use the component
property to place the card's title within an HTML heading element.
Title within an <h4> element
With multiple body sections
You may use multiple body sections to visually separate blocks of content.
With a primary body section that fills
<CardBody>
sections will fill the available height of the card when isFilled
equals {true}
, which is the default value. Set isFilled
to {false}
to disable this behavior for one or more body sections. The remaining available height of the card will be split between any <CardBody>
section that does not set isFilled
to {false}
.
A common use case of this is to set all but one body section to isFilled={false}
so that a primary body section fills the available space of the card as seen in the example below. This example has 3 <CardBody>
sections, two of which set isFilled
to {false}
. The third <CardBody>
fills the remaining height of the card.
Selectable
A selectable card can be selected by clicking anywhere within the card.
You must avoid rendering any other interactive content within the <Card>
when it is meant to be selectable only. Refer to our actionable and selectable example if you need a card that is both selectable and has other interactive, actionable content.
Single selectable
When a group of single selectable cards are related, you must pass the same name
property to each card's selectableActions
property.
Actionable
An actionable card can perform an action or navigate to a link by clicking anywhere within the card. To open a link in a new tab or window, pass the isExternalLink
property to selectableActions
.
You can pass the isClicked
property to <Card>
to convey that a card is the currently clicked one, such as when clicking a card would open a primary-detail view. This must not be used simply for "selection" of a card, and you should instead use our selectable card or single selectable card.
When a card is meant to be actionable only, you must avoid rendering any other interactive content within the <Card>
, similar to selectable cards.
Actionable and selectable
A card can be selectable and have additional interactive content by passing both the isClickable
and isSelectable
properties to <Card>
. The following example shows how the actionable functionality can be rendered anywhere within a selectable card.
When passing interactive content to an actionable and selectable card that is disabled, you should also ensure the interactive content is disabled as well, if applicable.
Selectable cards (deprecated)
The following example shows a deprecated implementation of selectable cards. This example uses the isSelectable
property instead of isSelectableRaised
, which is the current recommendation for implementation. isSelectable
applies selectable styling, but does not apply raised styling on hover and selection as isSelectableRaised
does.
A tabIndex={0}
is also manually passed to allow the card to be focused and clicked via keyboard.
Selectable card accessibility features (deprecated)
Note: the following example uses deprecated properties. We recommend using the new selectableActions
property for the CardHeader
instead.
The following cards demonstrate how the hasSelectableInput
and onSelectableInputChange
properties improve accessibility for selectable cards.
The first card sets hasSelectableInput
to true, which renders a checkbox input that is only visible to, and navigable by, screen readers. This input communicates to assistive technology users that a card is selectable, and if so, also communicates the current selection state.
By default, this input will have an aria-label that corresponds to the <CardTitle>
. If this isn't defined, then you must pass a custom aria-label using the selectableInputAriaLabel
property.
The first card passes an onChange callback to onSelectableInputChange
to enable the selection/deselection of the associated card via checkbox input.
The second card does not set hasSelectableInput
to true, so neither the input nor the selection state is communicated to users of assistive technologies.
We recommend navigating this example using a screen reader to best understand both cards.
Expandable cards
A card can be made expandable using the isExpanded
property. In the collapsed state, only the card header is shown, and the user can click the caret to view the rest of the card content.
Place any content that you want to be hidden within the <CardExpandableContent>
component.
Expandable with icon
An image can be placed in the card header to show users an icon beside the expansion caret.
Props
Card
Name | Type | Default | Description |
---|---|---|---|
children | React.ReactNode | Content rendered inside the Card | |
className | string | Additional classes added to the Card | |
component | unknown | 'div' | Sets the base component to render. defaults to div |
Deprecated: hasSelectableInput | boolean | false | Flag indicating that the card should render a hidden input to make it selectable |
id | string | '' | ID of the Card. Also passed back in the CardHeader onExpand callback. |
isClickable | boolean | false | Flag indicating that the card is clickable and contains some action that triggers on click. |
isClicked | boolean | false | Flag indicating whether a card that is either only clickable or that is both clickable and selectable is currently clicked and has clicked styling. |
isCompact | boolean | false | Modifies the card to include compact styling. Should not be used with isLarge. |
isDisabled | boolean | false | Flag indicating that a clickable or selectable card is disabled. |
Deprecated: isDisabledRaised | boolean | false | Modifies a raised selectable card to have disabled styling |
isExpanded | boolean | false | Flag indicating if a card is expanded. Modifies the card to be expandable. |
isFlat | boolean | false | Modifies the card to include flat styling |
isFullHeight | boolean | false | Cause component to consume the available height of its container |
isLarge | boolean | false | Modifies the card to be large. Should not be used with isCompact. |
isPlain | boolean | false | Modifies the card to include plain styling; this removes border and background |
isRounded | boolean | false | Modifies the card to include rounded styling |
isSelectable | boolean | false | Flag indicating that the card is selectable. |
Deprecated: isSelectableRaised | boolean | false | Specifies the card is selectable, and applies raised styling on hover and select |
isSelected | boolean | false | Flag indicating whether a card that is either selectable only or both clickable and selectable is currently selected and has selected styling. |
Deprecated: onSelectableInputChange | (event: React.FormEvent<HTMLInputElement>, labelledBy: string) => void | () => {} | Callback that executes when the selectable input is changed |
ouiaId | number | string | Value to overwrite the randomly generated data-ouia-component-id. | |
ouiaSafe | boolean | true | 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. |
Deprecated: selectableInputAriaLabel | string | Aria label to apply to the selectable input if one is rendered |
CardHeader
Name | Type | Default | Description |
---|---|---|---|
actions | CardHeaderActionsObject | Actions of the card header | |
children | React.ReactNode | Content rendered inside the card header | |
className | string | Additional classes added to the card header | |
id | string | ID of the card header. | |
isToggleRightAligned | boolean | Whether to right-align expandable toggle button | |
onExpand | (event: React.MouseEvent, id: string) => void | Callback expandable card | |
selectableActions | CardHeaderSelectableActionsObject | Selectable actions of the card header | |
toggleButtonProps | any | Additional props for expandable toggle button |
CardHeaderActionsObject
Name | Type | Default | Description |
---|---|---|---|
actionsrequired | React.ReactNode | Actions of the card header | |
className | string | Additional classes added to the actions wrapper | |
hasNoOffset | boolean | Flag indicating that the actions have no offset |
CardHeaderSelectableActionsObject
Name | Type | Default | Description |
---|---|---|---|
selectableActionIdrequired | string | ID passed to the selectable or clickable input | |
className | string | Additional classes added to the selectable actions wrapper | |
hasNoOffset | boolean | Flag indicating that the actions have no offset | |
isChecked | boolean | ||
isExternalLink | boolean | Flag to indicate whether a clickable card's link should open in a new tab/window. | |
name | string | Name for the input element of a clickable or selectable card. | |
onChange | (event: React.FormEvent<HTMLInputElement>, checked: boolean) => void | Callback for when a selectable card input changes | |
onClickAction | (event: React.FormEvent<HTMLInputElement> | React.MouseEvent) => void | Action to call when clickable card is clicked | |
selectableActionAriaLabel | string | Adds an accessible label to the selectable or clickable input | |
selectableActionAriaLabelledby | string | Adds an accessible label to the selectable or clickable input by passing in a space separated list of id's. | |
to | string | Link to navigate to when clickable card is clicked | |
variant | 'single' | 'multiple' | Determines the type of input to be used for a selectable card. |
CardTitle
Name | Type | Default | Description |
---|---|---|---|
children | React.ReactNode | Content rendered inside the CardTitle | |
className | string | Additional classes added to the CardTitle | |
component | unknown | 'div' | Sets the base component to render. defaults to div |
CardBody
Name | Type | Default | Description |
---|---|---|---|
children | React.ReactNode | Content rendered inside the Card Body | |
className | string | Additional classes added to the Card Body | |
component | unknown | 'div' | Sets the base component to render. defaults to div |
isFilled | boolean | true | Enables the body Content to fill the height of the card |
CardFooter
Name | Type | Default | Description |
---|---|---|---|
children | React.ReactNode | Content rendered inside the Card Footer | |
className | string | Additional classes added to the Footer | |
component | unknown | 'div' | Sets the base component to render. defaults to div |
CardExpandableContent
Name | Type | Default | Description |
---|---|---|---|
children | React.ReactNode | Content rendered inside the Card Body | |
className | string | Additional classes added to the Card Body |
CSS variables
Expand or collapse column | Selector | Variable | Value | |
---|---|---|---|---|
.pf-v5-c-card | --pf-v5-c-card--BackgroundColor | #fff | ||
--pf-v5-c-card--BackgroundColor --pf-v5-global--BackgroundColor--100 $pf-v5-global--BackgroundColor--100 $pf-v5-color-white #fff | ||||
.pf-v5-c-card | --pf-v5-c-card--BoxShadow | 0 0.0625rem 0.125rem 0 rgba(3, 3, 3, 0.12), 0 0 0.125rem 0 rgba(3, 3, 3, 0.06) | ||
--pf-v5-c-card--BoxShadow --pf-v5-global--BoxShadow--sm $pf-v5-global--BoxShadow--sm 0 pf-size-prem(1px) pf-size-prem(2px) 0 rgba($pf-v5-color-black-1000, .12), 0 0 pf-size-prem(2px) 0 rgba($pf-v5-color-black-1000, .06) 0 pf-size-prem(1px) pf-size-prem(2px) 0 rgba(#030303, .12), 0 0 pf-size-prem(2px) 0 rgba(#030303, .06) 0 0.0625rem 0.125rem 0 rgba(3, 3, 3, 0.12), 0 0 0.125rem 0 rgba(3, 3, 3, 0.06) | ||||
.pf-v5-c-card | --pf-v5-c-card--first-child--PaddingTop | 1.5rem | ||
--pf-v5-c-card--first-child--PaddingTop --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-card | --pf-v5-c-card--child--PaddingRight | 1.5rem | ||
--pf-v5-c-card--child--PaddingRight --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-card | --pf-v5-c-card--child--PaddingBottom | 1.5rem | ||
--pf-v5-c-card--child--PaddingBottom --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-card | --pf-v5-c-card--child--PaddingLeft | 1.5rem | ||
--pf-v5-c-card--child--PaddingLeft --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-card | --pf-v5-c-card--c-divider--child--PaddingTop | 1.5rem | ||
--pf-v5-c-card--c-divider--child--PaddingTop --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-card | --pf-v5-c-card__title--not--last-child--PaddingBottom | 1rem | ||
--pf-v5-c-card__title--not--last-child--PaddingBottom --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-card | --pf-v5-c-card__title-text--FontFamily | '"RedHatDisplay", helvetica, arial, sans-serif' | ||
--pf-v5-c-card__title-text--FontFamily --pf-v5-global--FontFamily--heading $pf-v5-global--FontFamily--heading '"RedHatDisplay", helvetica, arial, sans-serif' | ||||
.pf-v5-c-card | --pf-v5-c-card__title-text--FontSize | 1rem | ||
--pf-v5-c-card__title-text--FontSize --pf-v5-global--FontSize--md $pf-v5-global--FontSize--md pf-font-prem(16px) 1rem | ||||
.pf-v5-c-card | --pf-v5-c-card__title-text--FontWeight | 400 | ||
--pf-v5-c-card__title-text--FontWeight --pf-v5-global--FontWeight--normal $pf-v5-global--FontWeight--normal 400 | ||||
.pf-v5-c-card | --pf-v5-c-card__title-text--LineHeight | 1.5 | ||
--pf-v5-c-card__title-text--LineHeight --pf-v5-global--LineHeight--md $pf-v5-global--LineHeight--md 1.5 | ||||
.pf-v5-c-card | --pf-v5-c-card__body--FontSize | 1rem | ||
--pf-v5-c-card__body--FontSize --pf-v5-global--FontSize--md $pf-v5-global--FontSize--md pf-font-prem(16px) 1rem | ||||
.pf-v5-c-card | --pf-v5-c-card__footer--FontSize | 1rem | ||
--pf-v5-c-card__footer--FontSize --pf-v5-global--FontSize--md $pf-v5-global--FontSize--md pf-font-prem(16px) 1rem | ||||
.pf-v5-c-card | --pf-v5-c-card__actions--PaddingLeft | 1rem | ||
--pf-v5-c-card__actions--PaddingLeft --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-card | --pf-v5-c-card__actions--Gap | 0.5rem | ||
--pf-v5-c-card__actions--Gap --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-card | --pf-v5-c-card__actions--MarginTop | calc(0.375rem * -1) | ||
--pf-v5-c-card__actions--MarginTop calc(--pf-v5-global--spacer--form-element * -1) calc($pf-v5-global--spacer--form-element * -1) calc(pf-size-prem(6px) * -1) calc(0.375rem * -1) | ||||
.pf-v5-c-card | --pf-v5-c-card__actions--MarginBottom | calc(0.375rem * -1) | ||
--pf-v5-c-card__actions--MarginBottom calc(--pf-v5-global--spacer--form-element * -1) calc($pf-v5-global--spacer--form-element * -1) calc(pf-size-prem(6px) * -1) calc(0.375rem * -1) | ||||
.pf-v5-c-card | --pf-v5-c-card__header-toggle--MarginTop | calc(0.375rem * -1) | ||
--pf-v5-c-card__header-toggle--MarginTop calc(--pf-v5-global--spacer--form-element * -1) calc($pf-v5-global--spacer--form-element * -1) calc(pf-size-prem(6px) * -1) calc(0.375rem * -1) | ||||
.pf-v5-c-card | --pf-v5-c-card__header-toggle--MarginRight | 0.25rem | ||
--pf-v5-c-card__header-toggle--MarginRight --pf-v5-global--spacer--xs $pf-v5-global--spacer--xs pf-size-prem(4px) 0.25rem | ||||
.pf-v5-c-card | --pf-v5-c-card__header-toggle--MarginBottom | calc(0.375rem * -1) | ||
--pf-v5-c-card__header-toggle--MarginBottom calc(--pf-v5-global--spacer--form-element * -1) calc($pf-v5-global--spacer--form-element * -1) calc(pf-size-prem(6px) * -1) calc(0.375rem * -1) | ||||
.pf-v5-c-card | --pf-v5-c-card__header-toggle--MarginLeft | calc(1rem * -1) | ||
--pf-v5-c-card__header-toggle--MarginLeft 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-card | --pf-v5-c-card__header-toggle-icon--Transition | all 250ms cubic-bezier(.42, 0, .58, 1) | ||
--pf-v5-c-card__header-toggle-icon--Transition --pf-v5-global--Transition $pf-v5-global--Transition all 250ms cubic-bezier(.42, 0, .58, 1) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-expanded__header-toggle-icon--Rotate | 90deg | ||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--BorderWidth | 1px | ||
--pf-v5-c-card--m-selectable--BorderWidth --pf-v5-global--BorderWidth--sm $pf-v5-global--BorderWidth--sm 1px | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--m-selected--BackgroundColor | #f0f0f0 | ||
--pf-v5-c-card--m-selectable--m-selected--BackgroundColor --pf-v5-global--BackgroundColor--200 $pf-v5-global--BackgroundColor--200 $pf-v5-color-black-200 #f0f0f0 | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--m-selected--BorderColor | #06c | ||
--pf-v5-c-card--m-selectable--m-selected--BorderColor --pf-v5-global--active-color--100 $pf-v5-global--active-color--100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--hover--BackgroundColor | #f5f5f5 | ||
--pf-v5-c-card--m-selectable--hover--BackgroundColor --pf-v5-global--palette--black-150 $pf-v5-color-black-150 #f5f5f5 | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--hover--BoxShadow | 0 0.5rem 1rem 0 rgba(3, 3, 3, 0.16), 0 0 0.375rem 0 rgba(3, 3, 3, 0.08) | ||
--pf-v5-c-card--m-selectable--hover--BoxShadow --pf-v5-global--BoxShadow--lg $pf-v5-global--BoxShadow--lg 0 pf-size-prem(8px) pf-size-prem(16px) 0 rgba($pf-v5-color-black-1000, .16), 0 0 pf-size-prem(6px) 0 rgba($pf-v5-color-black-1000, .08) 0 pf-size-prem(8px) pf-size-prem(16px) 0 rgba(#030303, .16), 0 0 pf-size-prem(6px) 0 rgba(#030303, .08) 0 0.5rem 1rem 0 rgba(3, 3, 3, 0.16), 0 0 0.375rem 0 rgba(3, 3, 3, 0.08) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--focus--BackgroundColor | #bee1f4 | ||
--pf-v5-c-card--m-selectable--focus--BackgroundColor --pf-v5-global--palette--blue-100 $pf-v5-color-blue-100 #bee1f4 | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--focus--BorderColor | #06c | ||
--pf-v5-c-card--m-selectable--focus--BorderColor --pf-v5-global--active-color--100 $pf-v5-global--active-color--100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--m-selected--focus--BorderColor | #06c | ||
--pf-v5-c-card--m-selectable--m-selected--focus--BorderColor --pf-v5-global--active-color--100 $pf-v5-global--active-color--100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--m-disabled--BackgroundColor | #fafafa | ||
--pf-v5-c-card--m-selectable--m-disabled--BackgroundColor --pf-v5-global--palette--black-100 $pf-v5-color-black-100 #fafafa | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--m-disabled--BorderColor | #d2d2d2 | ||
--pf-v5-c-card--m-selectable--m-disabled--BorderColor --pf-v5-global--BorderColor--100 $pf-v5-global--BorderColor--100 $pf-v5-color-black-300 #d2d2d2 | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--m-disabled--BoxShadow | 0 0.0625rem 0.125rem 0 rgba(3, 3, 3, 0.12), 0 0 0.125rem 0 rgba(3, 3, 3, 0.06) | ||
--pf-v5-c-card--m-selectable--m-disabled--BoxShadow --pf-v5-global--BoxShadow--sm $pf-v5-global--BoxShadow--sm 0 pf-size-prem(1px) pf-size-prem(2px) 0 rgba($pf-v5-color-black-1000, .12), 0 0 pf-size-prem(2px) 0 rgba($pf-v5-color-black-1000, .06) 0 pf-size-prem(1px) pf-size-prem(2px) 0 rgba(#030303, .12), 0 0 pf-size-prem(2px) 0 rgba(#030303, .06) 0 0.0625rem 0.125rem 0 rgba(3, 3, 3, 0.12), 0 0 0.125rem 0 rgba(3, 3, 3, 0.06) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--m-clickable--hover--BackgroundColor | #fff | ||
--pf-v5-c-card--m-selectable--m-clickable--hover--BackgroundColor --pf-v5-global--BackgroundColor--100 $pf-v5-global--BackgroundColor--100 $pf-v5-color-white #fff | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--m-clickable--hover--BoxShadow | 0 0.0625rem 0.125rem 0 rgba(3, 3, 3, 0.12), 0 0 0.125rem 0 rgba(3, 3, 3, 0.06) | ||
--pf-v5-c-card--m-selectable--m-clickable--hover--BoxShadow --pf-v5-global--BoxShadow--sm $pf-v5-global--BoxShadow--sm 0 pf-size-prem(1px) pf-size-prem(2px) 0 rgba($pf-v5-color-black-1000, .12), 0 0 pf-size-prem(2px) 0 rgba($pf-v5-color-black-1000, .06) 0 pf-size-prem(1px) pf-size-prem(2px) 0 rgba(#030303, .12), 0 0 pf-size-prem(2px) 0 rgba(#030303, .06) 0 0.0625rem 0.125rem 0 rgba(3, 3, 3, 0.12), 0 0 0.125rem 0 rgba(3, 3, 3, 0.06) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--m-clickable--m-selected--BorderColor | transparent | ||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--m-clickable--m-selected--BackgroundColor | #fff | ||
--pf-v5-c-card--m-selectable--m-clickable--m-selected--BackgroundColor --pf-v5-global--BackgroundColor--100 $pf-v5-global--BackgroundColor--100 $pf-v5-color-white #fff | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--m-clickable--m-current--BackgroundColor | #f5f5f5 | ||
--pf-v5-c-card--m-selectable--m-clickable--m-current--BackgroundColor --pf-v5-global--palette--black-150 $pf-v5-color-black-150 #f5f5f5 | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable--m-clickable--m-current--BorderColor | #06c | ||
--pf-v5-c-card--m-selectable--m-clickable--m-current--BorderColor --pf-v5-global--active-color--100 $pf-v5-global--active-color--100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-card | --pf-v5-c-card--m-hoverable-raised--hover--BoxShadow | 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||
--pf-v5-c-card--m-hoverable-raised--hover--BoxShadow --pf-v5-global--BoxShadow--md $pf-v5-global--BoxShadow--md 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba($pf-v5-color-black-1000, .12), 0 0 pf-size-prem(4px) 0 rgba($pf-v5-color-black-1000, .06) 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba(#030303, .12), 0 0 pf-size-prem(4px) 0 rgba(#030303, .06) 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-hoverable-raised--hover--before--BackgroundColor | #73bcf7 | ||
--pf-v5-c-card--m-hoverable-raised--hover--before--BackgroundColor --pf-v5-global--active-color--400 $pf-v5-global--active-color--400 $pf-v5-color-blue-200 #73bcf7 | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--before--Right | 0 | ||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--before--Bottom | 0 | ||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--before--Left | 0 | ||
.pf-v5-c-card | --pf-v5-c-card--m-flat--m-selectable-raised--before--Right | calc(-1 * 1px) | ||
--pf-v5-c-card--m-flat--m-selectable-raised--before--Right calc(-1 * --pf-v5-c-card--m-flat--BorderWidth) calc(-1 * --pf-v5-global--BorderWidth--sm) calc(-1 * $pf-v5-global--BorderWidth--sm) calc(-1 * 1px) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-flat--m-selectable-raised--before--Bottom | calc(-1 * 1px) | ||
--pf-v5-c-card--m-flat--m-selectable-raised--before--Bottom calc(-1 * --pf-v5-c-card--m-flat--BorderWidth) calc(-1 * --pf-v5-global--BorderWidth--sm) calc(-1 * $pf-v5-global--BorderWidth--sm) calc(-1 * 1px) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-flat--m-selectable-raised--before--Left | calc(-1 * 1px) | ||
--pf-v5-c-card--m-flat--m-selectable-raised--before--Left calc(-1 * --pf-v5-c-card--m-flat--BorderWidth) calc(-1 * --pf-v5-global--BorderWidth--sm) calc(-1 * $pf-v5-global--BorderWidth--sm) calc(-1 * 1px) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--before--Height | 4px | ||
--pf-v5-c-card--m-selectable-raised--before--Height --pf-v5-global--BorderWidth--xl $pf-v5-global--BorderWidth--xl 4px | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--before--BackgroundColor | transparent | ||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--before--Transition | none | ||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--before--ScaleY | 1 | ||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--before--TranslateY | 0 | ||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--hover--BoxShadow | 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||
--pf-v5-c-card--m-selectable-raised--hover--BoxShadow --pf-v5-global--BoxShadow--md $pf-v5-global--BoxShadow--md 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba($pf-v5-color-black-1000, .12), 0 0 pf-size-prem(4px) 0 rgba($pf-v5-color-black-1000, .06) 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba(#030303, .12), 0 0 pf-size-prem(4px) 0 rgba(#030303, .06) 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--hover--before--BackgroundColor | #73bcf7 | ||
--pf-v5-c-card--m-selectable-raised--hover--before--BackgroundColor --pf-v5-global--active-color--400 $pf-v5-global--active-color--400 $pf-v5-color-blue-200 #73bcf7 | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--focus--BoxShadow | 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||
--pf-v5-c-card--m-selectable-raised--focus--BoxShadow --pf-v5-global--BoxShadow--md $pf-v5-global--BoxShadow--md 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba($pf-v5-color-black-1000, .12), 0 0 pf-size-prem(4px) 0 rgba($pf-v5-color-black-1000, .06) 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba(#030303, .12), 0 0 pf-size-prem(4px) 0 rgba(#030303, .06) 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--focus--before--BackgroundColor | #73bcf7 | ||
--pf-v5-c-card--m-selectable-raised--focus--before--BackgroundColor --pf-v5-global--active-color--400 $pf-v5-global--active-color--400 $pf-v5-color-blue-200 #73bcf7 | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--active--BoxShadow | 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||
--pf-v5-c-card--m-selectable-raised--active--BoxShadow --pf-v5-global--BoxShadow--md $pf-v5-global--BoxShadow--md 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba($pf-v5-color-black-1000, .12), 0 0 pf-size-prem(4px) 0 rgba($pf-v5-color-black-1000, .06) 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba(#030303, .12), 0 0 pf-size-prem(4px) 0 rgba(#030303, .06) 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--active--before--BackgroundColor | #73bcf7 | ||
--pf-v5-c-card--m-selectable-raised--active--before--BackgroundColor --pf-v5-global--active-color--400 $pf-v5-global--active-color--400 $pf-v5-color-blue-200 #73bcf7 | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--m-selected-raised--before--BackgroundColor | #06c | ||
--pf-v5-c-card--m-selectable-raised--m-selected-raised--before--BackgroundColor --pf-v5-global--active-color--100 $pf-v5-global--active-color--100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--m-selected-raised--BoxShadow | 0 0.5rem 1rem 0 rgba(3, 3, 3, 0.16), 0 0 0.375rem 0 rgba(3, 3, 3, 0.08) | ||
--pf-v5-c-card--m-selectable-raised--m-selected-raised--BoxShadow --pf-v5-global--BoxShadow--lg $pf-v5-global--BoxShadow--lg 0 pf-size-prem(8px) pf-size-prem(16px) 0 rgba($pf-v5-color-black-1000, .16), 0 0 pf-size-prem(6px) 0 rgba($pf-v5-color-black-1000, .08) 0 pf-size-prem(8px) pf-size-prem(16px) 0 rgba(#030303, .16), 0 0 pf-size-prem(6px) 0 rgba(#030303, .08) 0 0.5rem 1rem 0 rgba(3, 3, 3, 0.16), 0 0 0.375rem 0 rgba(3, 3, 3, 0.08) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base | -0.5rem | ||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY | -0.5rem | ||
--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY --pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base -0.5rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-flat--m-selectable-raised--m-selected-raised--TranslateY | calc(-0.5rem + 1px) | ||
--pf-v5-c-card--m-flat--m-selectable-raised--m-selected-raised--TranslateY calc(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base + --pf-v5-c-card--m-flat--BorderWidth) calc(-0.5rem + --pf-v5-global--BorderWidth--sm) calc(-0.5rem + $pf-v5-global--BorderWidth--sm) calc(-0.5rem + 1px) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-rounded--m-selectable-raised--m-selected-raised--TranslateY | calc(-0.5rem + 3px) | ||
--pf-v5-c-card--m-rounded--m-selectable-raised--m-selected-raised--TranslateY calc(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base + --pf-v5-c-card--m-rounded--BorderRadius) calc(-0.5rem + --pf-v5-global--BorderRadius--sm) calc(-0.5rem + $pf-v5-global--BorderRadius--sm) calc(-0.5rem + 3px) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--m-selected-raised--ZIndex | 100 | ||
--pf-v5-c-card--m-selectable-raised--m-selected-raised--ZIndex --pf-v5-global--ZIndex--xs $pf-v5-global--ZIndex--xs 100 | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--m-selected-raised--Transition | transform .25s linear, box-shadow .25s linear | ||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--m-selected-raised--before--Transition | transform .25s linear | ||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--m-selected-raised--before--TranslateY | calc(-0.5rem * -1) | ||
--pf-v5-c-card--m-selectable-raised--m-selected-raised--before--TranslateY calc(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY * -1) calc(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base * -1) calc(-0.5rem * -1) | ||||
.pf-v5-c-card | --pf-v5-c-card--m-selectable-raised--m-selected-raised--before--ScaleY | 2 | ||
.pf-v5-c-card | --pf-v5-c-card--m-non-selectable-raised--BackgroundColor | #fafafa | ||
--pf-v5-c-card--m-non-selectable-raised--BackgroundColor --pf-v5-global--BackgroundColor--light-200 $pf-v5-global--BackgroundColor--light-200 $pf-v5-color-black-100 #fafafa | ||||
.pf-v5-c-card | --pf-v5-c-card--m-non-selectable-raised--before--BackgroundColor | #d2d2d2 | ||
--pf-v5-c-card--m-non-selectable-raised--before--BackgroundColor --pf-v5-global--disabled-color--200 $pf-v5-global--disabled-color--200 $pf-v5-color-black-300 #d2d2d2 | ||||
.pf-v5-c-card | --pf-v5-c-card--m-non-selectable-raised--before--ScaleY | 2 | ||
.pf-v5-c-card | --pf-v5-c-card--m-flat--m-non-selectable-raised--before--BorderColor | #d2d2d2 | ||
--pf-v5-c-card--m-flat--m-non-selectable-raised--before--BorderColor --pf-v5-global--disabled-color--200 $pf-v5-global--disabled-color--200 $pf-v5-color-black-300 #d2d2d2 | ||||
.pf-v5-c-card | --pf-v5-c-card--m-compact__body--FontSize | 0.875rem | ||
--pf-v5-c-card--m-compact__body--FontSize --pf-v5-global--FontSize--sm $pf-v5-global--FontSize--sm pf-font-prem(14px) 0.875rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-compact__footer--FontSize | 0.875rem | ||
--pf-v5-c-card--m-compact__footer--FontSize --pf-v5-global--FontSize--sm $pf-v5-global--FontSize--sm pf-font-prem(14px) 0.875rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-compact--first-child--PaddingTop | 1rem | ||
--pf-v5-c-card--m-compact--first-child--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-compact--child--PaddingRight | 1rem | ||
--pf-v5-c-card--m-compact--child--PaddingRight --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-compact--child--PaddingBottom | 1rem | ||
--pf-v5-c-card--m-compact--child--PaddingBottom --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-compact--child--PaddingLeft | 1rem | ||
--pf-v5-c-card--m-compact--child--PaddingLeft --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-compact--c-divider--child--PaddingTop | 1rem | ||
--pf-v5-c-card--m-compact--c-divider--child--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-compact__title--not--last-child--PaddingBottom | 0.5rem | ||
--pf-v5-c-card--m-compact__title--not--last-child--PaddingBottom --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-display-lg__title-text--FontSize | 1.25rem | ||
--pf-v5-c-card--m-display-lg__title-text--FontSize --pf-v5-global--FontSize--xl $pf-v5-global--FontSize--xl pf-font-prem(20px) 1.25rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-display-lg--first-child--PaddingTop | 2rem | ||
--pf-v5-c-card--m-display-lg--first-child--PaddingTop --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-display-lg--child--PaddingRight | 2rem | ||
--pf-v5-c-card--m-display-lg--child--PaddingRight --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-display-lg--child--PaddingBottom | 2rem | ||
--pf-v5-c-card--m-display-lg--child--PaddingBottom --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-display-lg--child--PaddingLeft | 2rem | ||
--pf-v5-c-card--m-display-lg--child--PaddingLeft --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-display-lg--c-divider--child--PaddingTop | 2rem | ||
--pf-v5-c-card--m-display-lg--c-divider--child--PaddingTop --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-display-lg__title--not--last-child--PaddingBottom | 1.5rem | ||
--pf-v5-c-card--m-display-lg__title--not--last-child--PaddingBottom --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-card | --pf-v5-c-card--m-flat--BorderWidth | 1px | ||
--pf-v5-c-card--m-flat--BorderWidth --pf-v5-global--BorderWidth--sm $pf-v5-global--BorderWidth--sm 1px | ||||
.pf-v5-c-card | --pf-v5-c-card--m-flat--BorderColor | #d2d2d2 | ||
--pf-v5-c-card--m-flat--BorderColor --pf-v5-global--BorderColor--100 $pf-v5-global--BorderColor--100 $pf-v5-color-black-300 #d2d2d2 | ||||
.pf-v5-c-card | --pf-v5-c-card--m-rounded--BorderRadius | 3px | ||
--pf-v5-c-card--m-rounded--BorderRadius --pf-v5-global--BorderRadius--sm $pf-v5-global--BorderRadius--sm 3px | ||||
.pf-v5-c-card | --pf-v5-c-card--m-full-height--Height | 100% | ||
.pf-v5-c-card | --pf-v5-c-card--m-plain--BoxShadow | none | ||
.pf-v5-c-card | --pf-v5-c-card--m-plain--BackgroundColor | transparent | ||
.pf-v5-c-card | --pf-v5-c-card__header--m-toggle-right--toggle--MarginRight | calc(0.375rem * -1) | ||
--pf-v5-c-card__header--m-toggle-right--toggle--MarginRight calc(--pf-v5-global--spacer--form-element * -1) calc($pf-v5-global--spacer--form-element * -1) calc(pf-size-prem(6px) * -1) calc(0.375rem * -1) | ||||
.pf-v5-c-card | --pf-v5-c-card__header--m-toggle-right--toggle--MarginLeft | 0.25rem | ||
--pf-v5-c-card__header--m-toggle-right--toggle--MarginLeft --pf-v5-global--spacer--xs $pf-v5-global--spacer--xs pf-size-prem(4px) 0.25rem | ||||
.pf-v5-c-card | --pf-v5-c-card__input--focus--BorderWidth | 2px | ||
--pf-v5-c-card__input--focus--BorderWidth --pf-v5-global--BorderWidth--md $pf-v5-global--BorderWidth--md 2px | ||||
.pf-v5-c-card | --pf-v5-c-card__input--focus--BorderColor | #06c | ||
--pf-v5-c-card__input--focus--BorderColor --pf-v5-global--primary-color--100 $pf-v5-global--primary-color--100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-card.pf-m-selectable.pf-m-clickable .pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:focus-visible) ~ .pf-v5-c-check__label | --pf-v5-c-card--BackgroundColor | unset | ||
.pf-v5-c-card.pf-m-selectable.pf-m-clickable .pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:focus-visible) ~ .pf-v5-c-check__label | --pf-v5-c-card--BorderColor | unset | ||
.pf-v5-c-card.pf-m-selectable.pf-m-clickable .pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:checked) ~ .pf-v5-c-check__label | --pf-v5-c-card--BackgroundColor | #fff | ||
--pf-v5-c-card--BackgroundColor --pf-v5-c-card--m-selectable--m-clickable--m-selected--BackgroundColor --pf-v5-global--BackgroundColor--100 $pf-v5-global--BackgroundColor--100 $pf-v5-color-white #fff | ||||
.pf-v5-c-card.pf-m-selectable.pf-m-clickable .pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:checked) ~ .pf-v5-c-check__label | --pf-v5-c-card--BorderColor | transparent | ||
--pf-v5-c-card--BorderColor --pf-v5-c-card--m-selectable--m-clickable--m-selected--BorderColor transparent | ||||
.pf-v5-c-card.pf-m-selectable.pf-m-clickable.pf-m-current | --pf-v5-c-card--BackgroundColor | #f5f5f5 | ||
--pf-v5-c-card--BackgroundColor --pf-v5-c-card--m-selectable--m-clickable--m-current--BackgroundColor --pf-v5-global--palette--black-150 $pf-v5-color-black-150 #f5f5f5 | ||||
.pf-v5-c-card.pf-m-selectable.pf-m-clickable.pf-m-current | --pf-v5-c-card--BorderColor | #06c | ||
--pf-v5-c-card--BorderColor --pf-v5-c-card--m-selectable--m-clickable--m-current--BorderColor --pf-v5-global--active-color--100 $pf-v5-global--active-color--100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-card.pf-m-selectable.pf-m-clickable.pf-m-current.pf-m-selected | --pf-v5-c-card--BackgroundColor | #f5f5f5 | ||
--pf-v5-c-card--BackgroundColor --pf-v5-c-card--m-selectable--m-clickable--m-current--BackgroundColor --pf-v5-global--palette--black-150 $pf-v5-color-black-150 #f5f5f5 | ||||
.pf-v5-c-card.pf-m-selectable.pf-m-clickable.pf-m-current.pf-m-selected | --pf-v5-c-card--BorderColor | #06c | ||
--pf-v5-c-card--BorderColor --pf-v5-c-card--m-selectable--m-clickable--m-current--BorderColor --pf-v5-global--active-color--100 $pf-v5-global--active-color--100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-card.pf-m-selectable.pf-m-clickable .pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:disabled) ~ .pf-v5-c-check__label | --pf-v5-c-card--BackgroundColor | #fafafa | ||
--pf-v5-c-card--BackgroundColor --pf-v5-c-card--m-selectable--m-disabled--BackgroundColor --pf-v5-global--palette--black-100 $pf-v5-color-black-100 #fafafa | ||||
.pf-v5-c-card.pf-m-selectable.pf-m-clickable .pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:disabled) ~ .pf-v5-c-check__label | --pf-v5-c-card--BorderColor | #d2d2d2 | ||
--pf-v5-c-card--BorderColor --pf-v5-c-card--m-selectable--m-disabled--BorderColor --pf-v5-global--BorderColor--100 $pf-v5-global--BorderColor--100 $pf-v5-color-black-300 #d2d2d2 | ||||
.pf-v5-c-card.pf-m-selectable.pf-m-clickable .pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:disabled) ~ .pf-v5-c-check__label | --pf-v5-c-card--BoxShadow | 0 0.0625rem 0.125rem 0 rgba(3, 3, 3, 0.12), 0 0 0.125rem 0 rgba(3, 3, 3, 0.06) | ||
--pf-v5-c-card--BoxShadow --pf-v5-c-card--m-selectable--m-disabled--BoxShadow --pf-v5-global--BoxShadow--sm $pf-v5-global--BoxShadow--sm 0 pf-size-prem(1px) pf-size-prem(2px) 0 rgba($pf-v5-color-black-1000, .12), 0 0 pf-size-prem(2px) 0 rgba($pf-v5-color-black-1000, .06) 0 pf-size-prem(1px) pf-size-prem(2px) 0 rgba(#030303, .12), 0 0 pf-size-prem(2px) 0 rgba(#030303, .06) 0 0.0625rem 0.125rem 0 rgba(3, 3, 3, 0.12), 0 0 0.125rem 0 rgba(3, 3, 3, 0.06) | ||||
.pf-v5-c-card.pf-m-hoverable-raised:hover | --pf-v5-c-card--BoxShadow | 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||
--pf-v5-c-card--BoxShadow --pf-v5-c-card--m-hoverable-raised--hover--BoxShadow --pf-v5-global--BoxShadow--md $pf-v5-global--BoxShadow--md 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba($pf-v5-color-black-1000, .12), 0 0 pf-size-prem(4px) 0 rgba($pf-v5-color-black-1000, .06) 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba(#030303, .12), 0 0 pf-size-prem(4px) 0 rgba(#030303, .06) 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||||
.pf-v5-c-card.pf-m-hoverable-raised:hover | --pf-v5-c-card--m-selectable-raised--before--BackgroundColor | #73bcf7 | ||
--pf-v5-c-card--m-selectable-raised--before--BackgroundColor --pf-v5-c-card--m-hoverable-raised--hover--before--BackgroundColor --pf-v5-global--active-color--400 $pf-v5-global--active-color--400 $pf-v5-color-blue-200 #73bcf7 | ||||
.pf-v5-c-card.pf-m-selectable-raised:hover | --pf-v5-c-card--BoxShadow | 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||
--pf-v5-c-card--BoxShadow --pf-v5-c-card--m-selectable-raised--hover--BoxShadow --pf-v5-global--BoxShadow--md $pf-v5-global--BoxShadow--md 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba($pf-v5-color-black-1000, .12), 0 0 pf-size-prem(4px) 0 rgba($pf-v5-color-black-1000, .06) 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba(#030303, .12), 0 0 pf-size-prem(4px) 0 rgba(#030303, .06) 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||||
.pf-v5-c-card.pf-m-selectable-raised:hover | --pf-v5-c-card--m-selectable-raised--before--BackgroundColor | #73bcf7 | ||
--pf-v5-c-card--m-selectable-raised--before--BackgroundColor --pf-v5-c-card--m-selectable-raised--hover--before--BackgroundColor --pf-v5-global--active-color--400 $pf-v5-global--active-color--400 $pf-v5-color-blue-200 #73bcf7 | ||||
.pf-v5-c-card.pf-m-selectable-raised:focus | --pf-v5-c-card--BoxShadow | 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||
--pf-v5-c-card--BoxShadow --pf-v5-c-card--m-selectable-raised--focus--BoxShadow --pf-v5-global--BoxShadow--md $pf-v5-global--BoxShadow--md 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba($pf-v5-color-black-1000, .12), 0 0 pf-size-prem(4px) 0 rgba($pf-v5-color-black-1000, .06) 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba(#030303, .12), 0 0 pf-size-prem(4px) 0 rgba(#030303, .06) 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||||
.pf-v5-c-card.pf-m-selectable-raised:focus | --pf-v5-c-card--m-selectable-raised--before--BackgroundColor | #73bcf7 | ||
--pf-v5-c-card--m-selectable-raised--before--BackgroundColor --pf-v5-c-card--m-selectable-raised--focus--before--BackgroundColor --pf-v5-global--active-color--400 $pf-v5-global--active-color--400 $pf-v5-color-blue-200 #73bcf7 | ||||
.pf-v5-c-card.pf-m-selectable-raised:active | --pf-v5-c-card--BoxShadow | 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||
--pf-v5-c-card--BoxShadow --pf-v5-c-card--m-selectable-raised--active--BoxShadow --pf-v5-global--BoxShadow--md $pf-v5-global--BoxShadow--md 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba($pf-v5-color-black-1000, .12), 0 0 pf-size-prem(4px) 0 rgba($pf-v5-color-black-1000, .06) 0 pf-size-prem(4px) pf-size-prem(8px) pf-size-prem(0) rgba(#030303, .12), 0 0 pf-size-prem(4px) 0 rgba(#030303, .06) 0 0.25rem 0.5rem 0rem rgba(3, 3, 3, 0.12), 0 0 0.25rem 0 rgba(3, 3, 3, 0.06) | ||||
.pf-v5-c-card.pf-m-selectable-raised:active | --pf-v5-c-card--m-selectable-raised--before--BackgroundColor | #73bcf7 | ||
--pf-v5-c-card--m-selectable-raised--before--BackgroundColor --pf-v5-c-card--m-selectable-raised--active--before--BackgroundColor --pf-v5-global--active-color--400 $pf-v5-global--active-color--400 $pf-v5-color-blue-200 #73bcf7 | ||||
.pf-v5-c-card.pf-m-selectable-raised.pf-m-selected-raised | --pf-v5-c-card--m-selectable-raised--before--BackgroundColor | #06c | ||
--pf-v5-c-card--m-selectable-raised--before--BackgroundColor --pf-v5-c-card--m-selectable-raised--m-selected-raised--before--BackgroundColor --pf-v5-global--active-color--100 $pf-v5-global--active-color--100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-card.pf-m-selectable-raised.pf-m-selected-raised | --pf-v5-c-card--m-selectable-raised--before--Transition | transform .25s linear | ||
--pf-v5-c-card--m-selectable-raised--before--Transition --pf-v5-c-card--m-selectable-raised--m-selected-raised--before--Transition transform .25s linear | ||||
.pf-v5-c-card.pf-m-selectable-raised.pf-m-selected-raised | --pf-v5-c-card--m-selectable-raised--before--TranslateY | calc(-0.5rem * -1) | ||
--pf-v5-c-card--m-selectable-raised--before--TranslateY --pf-v5-c-card--m-selectable-raised--m-selected-raised--before--TranslateY calc(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY * -1) calc(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base * -1) calc(-0.5rem * -1) | ||||
.pf-v5-c-card.pf-m-selectable-raised.pf-m-selected-raised | --pf-v5-c-card--m-selectable-raised--before--ScaleY | 2 | ||
--pf-v5-c-card--m-selectable-raised--before--ScaleY --pf-v5-c-card--m-selectable-raised--m-selected-raised--before--ScaleY 2 | ||||
.pf-v5-c-card.pf-m-non-selectable-raised | --pf-v5-c-card--BackgroundColor | #fafafa | ||
--pf-v5-c-card--BackgroundColor --pf-v5-c-card--m-non-selectable-raised--BackgroundColor --pf-v5-global--BackgroundColor--light-200 $pf-v5-global--BackgroundColor--light-200 $pf-v5-color-black-100 #fafafa | ||||
.pf-v5-c-card.pf-m-non-selectable-raised | --pf-v5-c-card--BoxShadow | none | ||
.pf-v5-c-card.pf-m-non-selectable-raised | --pf-v5-c-card--m-flat--BorderColor | #d2d2d2 | ||
--pf-v5-c-card--m-flat--BorderColor --pf-v5-c-card--m-flat--m-non-selectable-raised--before--BorderColor --pf-v5-global--disabled-color--200 $pf-v5-global--disabled-color--200 $pf-v5-color-black-300 #d2d2d2 | ||||
.pf-v5-c-card.pf-m-non-selectable-raised | --pf-v5-c-card--m-selectable-raised--before--BackgroundColor | #d2d2d2 | ||
--pf-v5-c-card--m-selectable-raised--before--BackgroundColor --pf-v5-c-card--m-non-selectable-raised--before--BackgroundColor --pf-v5-global--disabled-color--200 $pf-v5-global--disabled-color--200 $pf-v5-color-black-300 #d2d2d2 | ||||
.pf-v5-c-card.pf-m-non-selectable-raised | --pf-v5-c-card--m-selectable-raised--before--ScaleY | 2 | ||
--pf-v5-c-card--m-selectable-raised--before--ScaleY --pf-v5-c-card--m-non-selectable-raised--before--ScaleY 2 | ||||
.pf-v5-c-card.pf-m-compact | --pf-v5-c-card__body--FontSize | 0.875rem | ||
--pf-v5-c-card__body--FontSize --pf-v5-c-card--m-compact__body--FontSize --pf-v5-global--FontSize--sm $pf-v5-global--FontSize--sm pf-font-prem(14px) 0.875rem | ||||
.pf-v5-c-card.pf-m-compact | --pf-v5-c-card__footer--FontSize | 0.875rem | ||
--pf-v5-c-card__footer--FontSize --pf-v5-c-card--m-compact__footer--FontSize --pf-v5-global--FontSize--sm $pf-v5-global--FontSize--sm pf-font-prem(14px) 0.875rem | ||||
.pf-v5-c-card.pf-m-compact | --pf-v5-c-card--first-child--PaddingTop | 1rem | ||
--pf-v5-c-card--first-child--PaddingTop --pf-v5-c-card--m-compact--first-child--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-card.pf-m-compact | --pf-v5-c-card--child--PaddingRight | 1rem | ||
--pf-v5-c-card--child--PaddingRight --pf-v5-c-card--m-compact--child--PaddingRight --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-card.pf-m-compact | --pf-v5-c-card--child--PaddingBottom | 1rem | ||
--pf-v5-c-card--child--PaddingBottom --pf-v5-c-card--m-compact--child--PaddingBottom --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-card.pf-m-compact | --pf-v5-c-card--child--PaddingLeft | 1rem | ||
--pf-v5-c-card--child--PaddingLeft --pf-v5-c-card--m-compact--child--PaddingLeft --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-card.pf-m-compact | --pf-v5-c-card--c-divider--child--PaddingTop | 1rem | ||
--pf-v5-c-card--c-divider--child--PaddingTop --pf-v5-c-card--m-compact--c-divider--child--PaddingTop --pf-v5-global--spacer--md $pf-v5-global--spacer--md pf-size-prem(16px) 1rem | ||||
.pf-v5-c-card.pf-m-compact | --pf-v5-c-card__title--not--last-child--PaddingBottom | 0.5rem | ||
--pf-v5-c-card__title--not--last-child--PaddingBottom --pf-v5-c-card--m-compact__title--not--last-child--PaddingBottom --pf-v5-global--spacer--sm $pf-v5-global--spacer--sm pf-size-prem(8px) 0.5rem | ||||
.pf-v5-c-card.pf-m-display-lg | --pf-v5-c-card__title-text--FontSize | 1.25rem | ||
--pf-v5-c-card__title-text--FontSize --pf-v5-c-card--m-display-lg__title-text--FontSize --pf-v5-global--FontSize--xl $pf-v5-global--FontSize--xl pf-font-prem(20px) 1.25rem | ||||
.pf-v5-c-card.pf-m-display-lg | --pf-v5-c-card--first-child--PaddingTop | 2rem | ||
--pf-v5-c-card--first-child--PaddingTop --pf-v5-c-card--m-display-lg--first-child--PaddingTop --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
.pf-v5-c-card.pf-m-display-lg | --pf-v5-c-card--child--PaddingRight | 2rem | ||
--pf-v5-c-card--child--PaddingRight --pf-v5-c-card--m-display-lg--child--PaddingRight --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
.pf-v5-c-card.pf-m-display-lg | --pf-v5-c-card--child--PaddingBottom | 2rem | ||
--pf-v5-c-card--child--PaddingBottom --pf-v5-c-card--m-display-lg--child--PaddingBottom --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
.pf-v5-c-card.pf-m-display-lg | --pf-v5-c-card--child--PaddingLeft | 2rem | ||
--pf-v5-c-card--child--PaddingLeft --pf-v5-c-card--m-display-lg--child--PaddingLeft --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
.pf-v5-c-card.pf-m-display-lg | --pf-v5-c-card--c-divider--child--PaddingTop | 2rem | ||
--pf-v5-c-card--c-divider--child--PaddingTop --pf-v5-c-card--m-display-lg--c-divider--child--PaddingTop --pf-v5-global--spacer--xl $pf-v5-global--spacer--xl pf-size-prem(32px) 2rem | ||||
.pf-v5-c-card.pf-m-display-lg | --pf-v5-c-card__title--not--last-child--PaddingBottom | 1.5rem | ||
--pf-v5-c-card__title--not--last-child--PaddingBottom --pf-v5-c-card--m-display-lg__title--not--last-child--PaddingBottom --pf-v5-global--spacer--lg $pf-v5-global--spacer--lg pf-size-prem(24px) 1.5rem | ||||
.pf-v5-c-card.pf-m-flat | --pf-v5-c-card--BoxShadow | none | ||
.pf-v5-c-card.pf-m-flat | --pf-v5-c-card--m-selectable-raised--before--Right | calc(-1 * 1px) | ||
--pf-v5-c-card--m-selectable-raised--before--Right --pf-v5-c-card--m-flat--m-selectable-raised--before--Right calc(-1 * --pf-v5-c-card--m-flat--BorderWidth) calc(-1 * --pf-v5-global--BorderWidth--sm) calc(-1 * $pf-v5-global--BorderWidth--sm) calc(-1 * 1px) | ||||
.pf-v5-c-card.pf-m-flat | --pf-v5-c-card--m-selectable-raised--before--Bottom | calc(-1 * 1px) | ||
--pf-v5-c-card--m-selectable-raised--before--Bottom --pf-v5-c-card--m-flat--m-selectable-raised--before--Bottom calc(-1 * --pf-v5-c-card--m-flat--BorderWidth) calc(-1 * --pf-v5-global--BorderWidth--sm) calc(-1 * $pf-v5-global--BorderWidth--sm) calc(-1 * 1px) | ||||
.pf-v5-c-card.pf-m-flat | --pf-v5-c-card--m-selectable-raised--before--Left | calc(-1 * 1px) | ||
--pf-v5-c-card--m-selectable-raised--before--Left --pf-v5-c-card--m-flat--m-selectable-raised--before--Left calc(-1 * --pf-v5-c-card--m-flat--BorderWidth) calc(-1 * --pf-v5-global--BorderWidth--sm) calc(-1 * $pf-v5-global--BorderWidth--sm) calc(-1 * 1px) | ||||
.pf-v5-c-card.pf-m-flat | --pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY | calc(-0.5rem + 1px) | ||
--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY --pf-v5-c-card--m-flat--m-selectable-raised--m-selected-raised--TranslateY calc(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base + --pf-v5-c-card--m-flat--BorderWidth) calc(-0.5rem + --pf-v5-global--BorderWidth--sm) calc(-0.5rem + $pf-v5-global--BorderWidth--sm) calc(-0.5rem + 1px) | ||||
.pf-v5-c-card.pf-m-plain | --pf-v5-c-card--BoxShadow | none | ||
--pf-v5-c-card--BoxShadow --pf-v5-c-card--m-plain--BoxShadow none | ||||
.pf-v5-c-card.pf-m-plain | --pf-v5-c-card--BackgroundColor | transparent | ||
--pf-v5-c-card--BackgroundColor --pf-v5-c-card--m-plain--BackgroundColor transparent | ||||
.pf-v5-c-card.pf-m-rounded | --pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY | calc(-0.5rem + 3px) | ||
--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY --pf-v5-c-card--m-rounded--m-selectable-raised--m-selected-raised--TranslateY calc(--pf-v5-c-card--m-selectable-raised--m-selected-raised--TranslateY--base + --pf-v5-c-card--m-rounded--BorderRadius) calc(-0.5rem + --pf-v5-global--BorderRadius--sm) calc(-0.5rem + $pf-v5-global--BorderRadius--sm) calc(-0.5rem + 3px) | ||||
.pf-v5-c-card__header .pf-v5-c-card__title | --pf-v5-c-card--first-child--PaddingTop | 0 | ||
.pf-v5-c-card__header .pf-v5-c-card__title | --pf-v5-c-card__title--not--last-child--PaddingBottom | 0 | ||
.pf-v5-c-card__header.pf-m-toggle-right | --pf-v5-c-card__header-toggle--MarginRight | calc(0.375rem * -1) | ||
--pf-v5-c-card__header-toggle--MarginRight --pf-v5-c-card__header--m-toggle-right--toggle--MarginRight calc(--pf-v5-global--spacer--form-element * -1) calc($pf-v5-global--spacer--form-element * -1) calc(pf-size-prem(6px) * -1) calc(0.375rem * -1) | ||||
.pf-v5-c-card__header.pf-m-toggle-right | --pf-v5-c-card__header-toggle--MarginLeft | 0.25rem | ||
--pf-v5-c-card__header-toggle--MarginLeft --pf-v5-c-card__header--m-toggle-right--toggle--MarginLeft --pf-v5-global--spacer--xs $pf-v5-global--spacer--xs pf-size-prem(4px) 0.25rem | ||||
.pf-v5-c-card__actions.pf-m-no-offset | --pf-v5-c-card__actions--MarginTop | 0 | ||
.pf-v5-c-card__actions.pf-m-no-offset | --pf-v5-c-card__actions--MarginBottom | 0 | ||
.pf-v5-c-card__selectable-actions .pf-v5-c-check__label:hover | --pf-v5-c-card--BackgroundColor | #f5f5f5 | ||
--pf-v5-c-card--BackgroundColor --pf-v5-c-card--m-selectable--hover--BackgroundColor --pf-v5-global--palette--black-150 $pf-v5-color-black-150 #f5f5f5 | ||||
.pf-v5-c-card__selectable-actions .pf-v5-c-check__label:hover | --pf-v5-c-card--BoxShadow | 0 0.5rem 1rem 0 rgba(3, 3, 3, 0.16), 0 0 0.375rem 0 rgba(3, 3, 3, 0.08) | ||
--pf-v5-c-card--BoxShadow --pf-v5-c-card--m-selectable--hover--BoxShadow --pf-v5-global--BoxShadow--lg $pf-v5-global--BoxShadow--lg 0 pf-size-prem(8px) pf-size-prem(16px) 0 rgba($pf-v5-color-black-1000, .16), 0 0 pf-size-prem(6px) 0 rgba($pf-v5-color-black-1000, .08) 0 pf-size-prem(8px) pf-size-prem(16px) 0 rgba(#030303, .16), 0 0 pf-size-prem(6px) 0 rgba(#030303, .08) 0 0.5rem 1rem 0 rgba(3, 3, 3, 0.16), 0 0 0.375rem 0 rgba(3, 3, 3, 0.08) | ||||
.pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:checked) ~ .pf-v5-c-check__label | --pf-v5-c-card--BorderColor | #06c | ||
--pf-v5-c-card--BorderColor --pf-v5-c-card--m-selectable--m-selected--BorderColor --pf-v5-global--active-color--100 $pf-v5-global--active-color--100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:checked) ~ .pf-v5-c-check__label | --pf-v5-c-card--BackgroundColor | #f0f0f0 | ||
--pf-v5-c-card--BackgroundColor --pf-v5-c-card--m-selectable--m-selected--BackgroundColor --pf-v5-global--BackgroundColor--200 $pf-v5-global--BackgroundColor--200 $pf-v5-color-black-200 #f0f0f0 | ||||
.pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:focus-visible) ~ .pf-v5-c-check__label | --pf-v5-c-card--BorderColor | #06c | ||
--pf-v5-c-card--BorderColor --pf-v5-c-card--m-selectable--focus--BorderColor --pf-v5-global--active-color--100 $pf-v5-global--active-color--100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:focus-visible) ~ .pf-v5-c-check__label | --pf-v5-c-card--BackgroundColor | #bee1f4 | ||
--pf-v5-c-card--BackgroundColor --pf-v5-c-card--m-selectable--focus--BackgroundColor --pf-v5-global--palette--blue-100 $pf-v5-color-blue-100 #bee1f4 | ||||
.pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:focus-visible):where(:checked) ~ .pf-v5-c-check__label | --pf-v5-c-card--BorderColor | #06c | ||
--pf-v5-c-card--BorderColor --pf-v5-c-card--m-selectable--m-selected--focus--BorderColor --pf-v5-global--active-color--100 $pf-v5-global--active-color--100 $pf-v5-color-blue-400 #06c | ||||
.pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:disabled) ~ .pf-v5-c-check__label | --pf-v5-c-card--BackgroundColor | #fafafa | ||
--pf-v5-c-card--BackgroundColor --pf-v5-c-card--m-selectable--m-disabled--BackgroundColor --pf-v5-global--palette--black-100 $pf-v5-color-black-100 #fafafa | ||||
.pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:disabled) ~ .pf-v5-c-check__label | --pf-v5-c-card--BorderColor | #d2d2d2 | ||
--pf-v5-c-card--BorderColor --pf-v5-c-card--m-selectable--m-disabled--BorderColor --pf-v5-global--BorderColor--100 $pf-v5-global--BorderColor--100 $pf-v5-color-black-300 #d2d2d2 | ||||
.pf-v5-c-card__selectable-actions .pf-v5-c-check__input:where(:disabled) ~ .pf-v5-c-check__label | --pf-v5-c-card--BoxShadow | 0 0.0625rem 0.125rem 0 rgba(3, 3, 3, 0.12), 0 0 0.125rem 0 rgba(3, 3, 3, 0.06) | ||
--pf-v5-c-card--BoxShadow --pf-v5-c-card--m-selectable--m-disabled--BoxShadow --pf-v5-global--BoxShadow--sm $pf-v5-global--BoxShadow--sm 0 pf-size-prem(1px) pf-size-prem(2px) 0 rgba($pf-v5-color-black-1000, .12), 0 0 pf-size-prem(2px) 0 rgba($pf-v5-color-black-1000, .06) 0 pf-size-prem(1px) pf-size-prem(2px) 0 rgba(#030303, .12), 0 0 pf-size-prem(2px) 0 rgba(#030303, .06) 0 0.0625rem 0.125rem 0 rgba(3, 3, 3, 0.12), 0 0 0.125rem 0 rgba(3, 3, 3, 0.06) | ||||
.pf-v5-c-card__expandable-content | --pf-v5-c-card--first-child--PaddingTop | 0 |
View source on GitHub