Examples
Variant examples
PatternFly supports several alert variants for different scenarios. Each variant has an associated status icon, background, and alert title coded to communicate the severity of an alert. Use the variant
property to apply the following styling options. If no variant
is specified, then the variant will be set to "default".
Variant | Description |
---|---|
Default | Use for generic messages with no associated severity |
Info | Use for general informational messages |
Success | Use to indicate that a task or process has been completed successfully |
Warning | Use to indicate that a non-critical error has occurred |
Danger | Use to indicate that a critical or blocking error has occurred |
Default alert:Default alert title
Info alert:Info alert title
Success alert:Success alert title
Warning alert:Warning alert title
Danger alert:Danger alert title
Alert variations
PatternFly supports several properties and variations that can be used to add extra content to an alert.
As demonstrated in the 1st variation below, use the
actionLinks
property to add one or more<AlertActionLink>
components that place links beneath the alert message. You must pass inhref
andcomponent="a"
properties to have an<AlertActionLink>
act as a proper link, rather than as a button.As demonstrated in the 2nd variation below, use a native HTML
<a>
element to add links within an alert message.As demonstrated in the 3rd and 4th variations below, use the
actionClose
property to add an<AlertActionCloseButton>
component, which can be used to manage and customize alert dismissals.actionClose
can be used with or without the presence ofactionLinks
.As demonstrated in the 5th and 6th variations below, use the
component
property to set the element for an alert title.- If the
description
prop is not passed in, then thecomponent
prop should be set to a non-heading element such as aspan
ordiv
. - If the
description
prop is passed in, then thecomponent
prop should be a heading element. Headings should be ordered by their level and heading levels should not be skipped. For example, a heading of anh2
level should not be followed directly by anh4
.
- If the
Success alert:Success alert title
Success alert description. This should tell the user more information about the alert.
Success alert:Success alert title
Success alert description. This should tell the user more information about the alert. This is a link.
Success alert:Success alert title
Success alert:Success alert title
Success alert:h6 Success alert title
Short alert description
Alert timeout
Use the timeout
property to automatically dismiss an alert after a period of time. If set to true
, the timeout
will be 8000 milliseconds. Provide a specific value to dismiss the alert after a different number of milliseconds.
Expandable alerts
An alert can contain additional, hidden information that is made visible when users click a caret icon. This information can be expanded and collapsed each time the icon is clicked.
It is not recommended to use an expandable alert with a timeout
in a toast alert group because the alert could timeout before users have time to interact with and view the entire alert.
See the toast alert considerations section of the alert accessibility documentation to understand the accessibility risks associated with using toast alerts.
Truncated alerts
Use the truncateTitle
property to shorten a long title
. Set truncateTitle
equal to a number (passed in as {n}
) to reduce the number of lines of text in the alert's title
. Users may hover over or tab to a truncated title
to see the full message in a tooltip.
Info alert: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur pellentesque neque cursus enim fringilla tincidunt. Proin lobortis aliquam dictum. Nam vel ullamcorper nulla, nec blandit dolor. Vivamus pellentesque neque justo, nec accumsan nulla rhoncus id. Suspendisse mollis, tortor quis faucibus volutpat, sem leo fringilla turpis, ac lacinia augue metus in nulla. Cras vestibulum lacinia orci. Pellentesque sodales consequat interdum. Sed porttitor tincidunt metus nec iaculis. Pellentesque non commodo justo. Morbi feugiat rhoncus neque, vitae facilisis diam aliquam nec. Sed dapibus vitae quam at tristique. Nunc vel commodo mi. Mauris et rhoncus leo.
Warning alert: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur pellentesque neque cursus enim fringilla tincidunt. Proin lobortis aliquam dictum. Nam vel ullamcorper nulla, nec blandit dolor. Vivamus pellentesque neque justo, nec accumsan nulla rhoncus id. Suspendisse mollis, tortor quis faucibus volutpat, sem leo fringilla turpis, ac lacinia augue metus in nulla. Cras vestibulum lacinia orci. Pellentesque sodales consequat interdum. Sed porttitor tincidunt metus nec iaculis. Pellentesque non commodo justo. Morbi feugiat rhoncus neque, vitae facilisis diam aliquam nec. Sed dapibus vitae quam at tristique. Nunc vel commodo mi. Mauris et rhoncus leo.
Danger alert: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur pellentesque neque cursus enim fringilla tincidunt. Proin lobortis aliquam dictum. Nam vel ullamcorper nulla, nec blandit dolor. Vivamus pellentesque neque justo, nec accumsan nulla rhoncus id. Suspendisse mollis, tortor quis faucibus volutpat, sem leo fringilla turpis, ac lacinia augue metus in nulla. Cras vestibulum lacinia orci. Pellentesque sodales consequat interdum. Sed porttitor tincidunt metus nec iaculis. Pellentesque non commodo justo. Morbi feugiat rhoncus neque, vitae facilisis diam aliquam nec. Sed dapibus vitae quam at tristique. Nunc vel commodo mi. Mauris et rhoncus leo.
Custom icons
Use the customIcon
property to replace a default alert icon with a custom icon.
Default alert:Default alert title
Info alert:Info alert title
Success alert:Success alert title
Warning alert:Warning alert title
Danger alert:Danger alert title
Inline alerts variants
Use inline alerts to display an alert inline with content. All alert variants may use the isInline
property to position alerts in content-heavy areas, such as within forms, wizards, or drawers.
Default alert:Default inline alert title
Info alert:Info inline alert title
Success alert:Success inline alert title
Warning alert:Warning inline alert title
Danger alert:Danger inline alert title
Inline alert variations
All general alert variations can use the isInline
property to apply inline styling.
Success alert:Success alert title
Success alert description. This should tell the user more information about the alert.
Success alert:Success alert title
Success alert description. This should tell the user more information about the alert. This is a link.
Success alert:Success alert title
Success alert:Success alert title
Success alert:Success alert title
Plain inline alert variants
Use the isPlain
property to make any inline alert plain. Plain styling removes the colored background but keeps colored text and icons.
Default alert:Default inline alert title
Info alert:Info inline alert title
Success alert:Success inline alert title
Warning alert:Warning inline alert title
Danger alert:Danger inline alert title
Plain inline alert variations
It is not recommended to use a plain inline alert with actionClose
nor actionLinks
because these alerts are non-dismissible and should persist until the error or action related to the alert is resolved.
Success alert:Success alert title
Success alert description. This should tell the user more information about the alert.
Static live region alerts
Live region alerts allow you to expose dynamic content changes in a way that can be announced by assistive technologies.
By default, isLiveRegion
alerts are static.
Info alert:Default live region configuration
isLiveRegion
prop to automatically set ARIA attributes and CSS classes. Info alert:Customized live region
isLiveRegion
prop to specify ARIA attributes and CSS manually on the containing element. Dynamic live region alerts
Alerts that are asynchronously appended into dynamic alert groups via the isLiveRegion
property will be announced to assistive technology the moment the change happens, following the strategy used for aria-atomic
, which defaults to false. This means only changes of type "addition" will be announced.
Asynchronous live region alerts
This example shows how an alert could be triggered by an asynchronous event in the application. Note that you can customize how the alert will be announced to assistive technology. See the [https://www.patternfly.org/v4/components/alert/accessibility](alert accessibility) for more information.
Props
Alert
Name | Type | Default | Description |
---|---|---|---|
titlerequired | React.ReactNode | Title of the alert. | |
actionClose | React.ReactNode | Close button; use the alert action close button component. | |
actionLinks | React.ReactNode | Action links; use a single alert action link component or multiple wrapped in an array or React.Fragment. | |
aria-label | string | `${capitalize(variant)} Alert` | Adds accessible text to the alert. |
children | React.ReactNode | '' | Content rendered inside the alert. |
className | string | '' | Additional classes to add to the alert. |
component | unknown | 'h4' | Sets the element to use as the alert title. Default is h4. |
customIcon | React.ReactNode | Set a custom icon to the alert. If not set the icon is set according to the variant. | |
id | string | Uniquely identifies the alert. | |
isExpandable | boolean | false | Flag indicating that the alert is expandable. |
isInline | boolean | false | Flag to indicate if the alert is inline. |
isLiveRegion | boolean | false | Flag to indicate if the alert is in a live region. |
isPlain | boolean | false | Flag to indicate if the alert is plain. |
onMouseEnter | No type info | () => {} | |
onMouseLeave | No type info | () => {} | |
onTimeout | () => void | () => {} | Function to be executed on alert timeout. Relevant when the timeout prop is set. |
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. |
timeout | number | boolean | false | If set to true, the timeout is 8000 milliseconds. If a number is provided, alert will be dismissed after that amount of time in milliseconds. |
timeoutAnimation | number | 3000 | If the user hovers over the alert and `timeout` expires, this is how long to wait before finally dismissing the alert. |
Deprecated: titleHeadingLevel | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | Sets the heading level to use for the alert title. Default is h4. | |
toggleAriaLabel | string | `${capitalize(variant)} alert details` | Adds accessible text to the alert toggle. |
tooltipPosition | TooltipPosition | 'auto' | 'top' | 'bottom' | 'left' | 'right' | 'top-start' | 'top-end' | 'bottom-start' | 'bottom-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end' | Position of the tooltip which is displayed if text is truncated. | |
truncateTitle | number | 0 | Truncate title to number of lines. |
variant | 'success' | 'danger' | 'warning' | 'info' | 'default' | AlertVariant.default | Adds alert variant styles. |
variantLabel | string | `${capitalize(variant)} alert:` | Variant label text for screen readers. |
AlertActionCloseButton
Name | Type | Default | Description |
---|---|---|---|
aria-label | string | '' | Accessible label for the close button |
className | string | Additional classes added to the alert action close button. | |
onClose | () => void | () => undefined as any | A callback for when the close button is clicked. |
variantLabel | string | Variant Label for the close button. |
AlertActionLink
Name | Type | Default | Description |
---|---|---|---|
children | string | Content rendered inside the alert action link. | |
className | string | '' | Additional classes added to the alert action link. |
CSS variables
.pf-c-alert | --pf-global--Color--100 | #151515 | ||
.pf-c-alert | --pf-global--Color--200 | #6a6e73 | ||
.pf-c-alert | --pf-global--BorderColor--100 | #d2d2d2 | ||
.pf-c-alert | --pf-global--primary-color--100 | #06c | ||
.pf-c-alert | --pf-global--link--Color | #06c | ||
.pf-c-alert | --pf-global--link--Color--hover | #004080 | ||
.pf-c-alert | --pf-global--BackgroundColor--100 | #fff | ||
.pf-c-alert | --pf-c-alert--BoxShadow | 0 0.5rem 1rem 0 rgba(3, 3, 3, 0.16), 0 0 0.375rem 0 rgba(3, 3, 3, 0.08) | ||
.pf-c-alert | --pf-c-alert--BackgroundColor | #fff | ||
.pf-c-alert | --pf-c-alert--GridTemplateColumns | max-content 1fr max-content | ||
.pf-c-alert | --pf-c-alert--GridTemplateAreas | "icon title action"
". description description"
". actiongroup actiongroup" | ||
.pf-c-alert | --pf-c-alert--BorderTopWidth | 2px | ||
.pf-c-alert | --pf-c-alert--BorderTopColor | #009596 | ||
.pf-c-alert | --pf-c-alert--PaddingTop | 1rem | ||
.pf-c-alert | --pf-c-alert--PaddingRight | 1rem | ||
.pf-c-alert | --pf-c-alert--PaddingBottom | 1rem | ||
.pf-c-alert | --pf-c-alert--PaddingLeft | 1rem | ||
.pf-c-alert | --pf-c-alert__FontSize | 0.875rem | ||
.pf-c-alert | --pf-c-alert__toggle--MarginTop | calc(-1 * 0.375rem - 0.0625rem) | ||
.pf-c-alert | --pf-c-alert__toggle--MarginBottom | calc(-1 * 0.375rem) | ||
.pf-c-alert | --pf-c-alert__toggle--MarginLeft | calc(-1 * 1rem) | ||
.pf-c-alert | --pf-c-alert__toggle-icon--Rotate | 0 | ||
.pf-c-alert | --pf-c-alert__toggle-icon--Transition | all 250ms cubic-bezier(.42, 0, .58, 1) | ||
.pf-c-alert | --pf-c-alert__icon--Color | #009596 | ||
.pf-c-alert | --pf-c-alert__icon--MarginTop | 0.0625rem | ||
.pf-c-alert | --pf-c-alert__icon--MarginRight | 0.5rem | ||
.pf-c-alert | --pf-c-alert__icon--FontSize | 1.125rem | ||
.pf-c-alert | --pf-c-alert__title--FontWeight | 700 | ||
.pf-c-alert | --pf-c-alert__title--Color | #003737 | ||
.pf-c-alert | --pf-c-alert__title--max-lines | 1 | ||
.pf-c-alert | --pf-c-alert__action--MarginTop | calc(0.375rem * -1) | ||
.pf-c-alert | --pf-c-alert__action--MarginBottom | calc(0.375rem * -1) | ||
.pf-c-alert | --pf-c-alert__action--TranslateY | 0.125rem | ||
.pf-c-alert | --pf-c-alert__action--MarginRight | calc(0.5rem * -1) | ||
.pf-c-alert | --pf-c-alert__description--PaddingTop | 0.25rem | ||
.pf-c-alert | --pf-c-alert__action-group--PaddingTop-base | 0.25rem | ||
.pf-c-alert | --pf-c-alert__action-group--PaddingTop | 0.25rem | ||
.pf-c-alert | --pf-c-alert__description--action-group--PaddingTop-base | 1rem | ||
.pf-c-alert | --pf-c-alert__description--action-group--PaddingTop | 1rem | ||
.pf-c-alert | --pf-c-alert__action-group__c-button--not-last-child--MarginRight | 1.5rem | ||
.pf-c-alert | --pf-c-alert--m-success--BorderTopColor | #3e8635 | ||
.pf-c-alert | --pf-c-alert--m-success__icon--Color | #3e8635 | ||
.pf-c-alert | --pf-c-alert--m-success__title--Color | #1e4f18 | ||
.pf-c-alert | --pf-c-alert--m-danger--BorderTopColor | #c9190b | ||
.pf-c-alert | --pf-c-alert--m-danger__icon--Color | #c9190b | ||
.pf-c-alert | --pf-c-alert--m-danger__title--Color | #a30000 | ||
.pf-c-alert | --pf-c-alert--m-warning--BorderTopColor | #f0ab00 | ||
.pf-c-alert | --pf-c-alert--m-warning__icon--Color | #f0ab00 | ||
.pf-c-alert | --pf-c-alert--m-warning__title--Color | #795600 | ||
.pf-c-alert | --pf-c-alert--m-info--BorderTopColor | #2b9af3 | ||
.pf-c-alert | --pf-c-alert--m-info__icon--Color | #2b9af3 | ||
.pf-c-alert | --pf-c-alert--m-info__title--Color | #002952 | ||
.pf-c-alert | --pf-c-alert--m-inline--BoxShadow | none | ||
.pf-c-alert | --pf-c-alert--m-inline--BackgroundColor | #f2f9f9 | ||
.pf-c-alert | --pf-c-alert--m-inline--m-success--BackgroundColor | #f3faf2 | ||
.pf-c-alert | --pf-c-alert--m-inline--m-danger--BackgroundColor | #faeae8 | ||
.pf-c-alert | --pf-c-alert--m-inline--m-warning--BackgroundColor | #fdf7e7 | ||
.pf-c-alert | --pf-c-alert--m-inline--m-info--BackgroundColor | #e7f1fa | ||
.pf-c-alert | --pf-c-alert--m-inline--m-plain--BorderTopWidth | 0 | ||
.pf-c-alert | --pf-c-alert--m-inline--m-plain--BackgroundColor | transparent | ||
.pf-c-alert | --pf-c-alert--m-inline--m-plain--PaddingTop | 0 | ||
.pf-c-alert | --pf-c-alert--m-inline--m-plain--PaddingRight | 0 | ||
.pf-c-alert | --pf-c-alert--m-inline--m-plain--PaddingBottom | 0 | ||
.pf-c-alert | --pf-c-alert--m-inline--m-plain--PaddingLeft | 0 | ||
.pf-c-alert | --pf-c-alert--m-expandable--GridTemplateColumns | auto max-content 1fr max-content | ||
.pf-c-alert | --pf-c-alert--m-expandable--GridTemplateAreas | "toggle icon title action"
". . description description"
". . actiongroup actiongroup" | ||
.pf-c-alert | --pf-c-alert--m-expandable__description--action-group--PaddingTop | 0.25rem | ||
.pf-c-alert | --pf-c-alert--m-expanded__toggle-icon--Rotate | 90deg | ||
.pf-c-alert | --pf-c-alert--m-expanded__description--action-group--PaddingTop | 1rem | ||
.pf-c-alert.pf-m-success | --pf-c-alert--BorderTopColor | #3e8635 | ||
.pf-c-alert.pf-m-success | --pf-c-alert__icon--Color | #3e8635 | ||
.pf-c-alert.pf-m-success | --pf-c-alert__title--Color | #1e4f18 | ||
.pf-c-alert.pf-m-success | --pf-c-alert--m-inline--BackgroundColor | #f3faf2 | ||
.pf-c-alert.pf-m-danger | --pf-c-alert--BorderTopColor | #c9190b | ||
.pf-c-alert.pf-m-danger | --pf-c-alert__icon--Color | #c9190b | ||
.pf-c-alert.pf-m-danger | --pf-c-alert__title--Color | #a30000 | ||
.pf-c-alert.pf-m-danger | --pf-c-alert--m-inline--BackgroundColor | #faeae8 | ||
.pf-c-alert.pf-m-warning | --pf-c-alert--BorderTopColor | #f0ab00 | ||
.pf-c-alert.pf-m-warning | --pf-c-alert__icon--Color | #f0ab00 | ||
.pf-c-alert.pf-m-warning | --pf-c-alert__title--Color | #795600 | ||
.pf-c-alert.pf-m-warning | --pf-c-alert--m-inline--BackgroundColor | #fdf7e7 | ||
.pf-c-alert.pf-m-info | --pf-c-alert--BorderTopColor | #2b9af3 | ||
.pf-c-alert.pf-m-info | --pf-c-alert__icon--Color | #2b9af3 | ||
.pf-c-alert.pf-m-info | --pf-c-alert__title--Color | #002952 | ||
.pf-c-alert.pf-m-info | --pf-c-alert--m-inline--BackgroundColor | #e7f1fa | ||
.pf-c-alert.pf-m-inline | --pf-c-alert--BoxShadow | none | ||
.pf-c-alert.pf-m-inline | --pf-c-alert--BackgroundColor | #f2f9f9 | ||
.pf-c-alert.pf-m-plain | --pf-c-alert--BorderTopWidth | 0 | ||
.pf-c-alert.pf-m-plain | --pf-c-alert--BackgroundColor | transparent | ||
.pf-c-alert.pf-m-plain | --pf-c-alert--PaddingTop | 0 | ||
.pf-c-alert.pf-m-plain | --pf-c-alert--PaddingRight | 0 | ||
.pf-c-alert.pf-m-plain | --pf-c-alert--PaddingBottom | 0 | ||
.pf-c-alert.pf-m-plain | --pf-c-alert--PaddingLeft | 0 | ||
.pf-c-alert.pf-m-expandable | --pf-c-alert--GridTemplateColumns | auto max-content 1fr max-content | ||
.pf-c-alert.pf-m-expandable | --pf-c-alert--GridTemplateAreas | "toggle icon title action"
". . description description"
". . actiongroup actiongroup" | ||
.pf-c-alert.pf-m-expandable | --pf-c-alert__description--action-group--PaddingTop | 0.25rem | ||
.pf-c-alert.pf-m-expanded | --pf-c-alert__toggle-icon--Rotate | 90deg | ||
.pf-c-alert.pf-m-expanded | --pf-c-alert__description--action-group--PaddingTop | 1rem | ||
.pf-c-alert__description + .pf-c-alert__action-group | --pf-c-alert__action-group--PaddingTop | 1rem | ||
.pf-c-alert__action > .pf-c-button | --pf-c-button--LineHeight | 1 | ||
.pf-c-alert__action-group > .pf-c-button | --pf-c-button--m-link--m-inline--hover--TextDecoration | none | ||
.pf-m-overpass-font .pf-c-alert__title | --pf-c-alert__title--FontWeight | 400 | ||
View source on GitHub