Scoped Notifications
- HTML/CSS:Dev Ready
- Layout:Responsive
Sections
It looks as if duplicates exist for this lead. View Duplicates.
About Scoped Notifications#
Accessibility#
Scoped notifications contain role="status"
on the container to signal to the browser to send an accessible status event to assistive technology. The assistive technology then notifies the user.
Base#
It looks as if duplicates exist for this lead. View Duplicates.
<div class="slds-scoped-notification slds-media slds-media_center slds-scoped-notification_light" role="status">
<div class="slds-media__figure">
<span class="slds-icon_container slds-icon-utility-info" title="information">
<svg class="slds-icon slds-icon_small slds-icon-text-default" aria-hidden="true">
States#
Informational#
It looks as if duplicates exist for this lead. View Duplicates.
<div class="slds-scoped-notification slds-media slds-media_center slds-theme_info" role="status">
<div class="slds-media__figure">
<span class="slds-icon_container slds-icon-utility-info" title="info">
<svg class="slds-icon slds-icon_small" aria-hidden="true">
Success#
Success! Your entry has been duplicated. View Duplicates.
<div class="slds-scoped-notification slds-media slds-media_center slds-theme_success" role="status">
<div class="slds-media__figure">
<span class="slds-icon_container slds-icon-utility-success" title="success">
<svg class="slds-icon slds-icon_small" aria-hidden="true">
Warning#
It looks as if duplicates exist for this lead. View Duplicates.
<div class="slds-scoped-notification slds-media slds-media_center slds-theme_warning" role="status">
<div class="slds-media__figure">
<span class="slds-icon_container slds-icon-utility-warning" title="warning">
<svg class="slds-icon slds-icon_small" aria-hidden="true">
Error#
It looks as if duplicates exist for this lead. View Duplicates.
<div class="slds-scoped-notification slds-media slds-media_center slds-theme_error" role="status">
<div class="slds-media__figure">
<span class="slds-icon_container slds-icon-utility-error" title="error">
<svg class="slds-icon slds-icon_small" aria-hidden="true">
Examples#
Informational Notifications default to the dark theme. For light, use the class slds-scoped-notification_light
instead of slds-theme_info
. An additional class, slds-scoped-notification_dark
is also available for the dark theme to more easily toggle between them.
Light Theme#
It looks as if duplicates exist for this lead. View Duplicates.
<div class="slds-scoped-notification slds-media slds-media_center slds-scoped-notification_light" role="status">
<div class="slds-media__figure">
<span class="slds-icon_container slds-icon-utility-info" title="information">
<svg class="slds-icon slds-icon_small slds-icon-text-default" aria-hidden="true">
Dark Theme#
It looks as if duplicates exist for this lead. View Duplicates.
<div class="slds-scoped-notification slds-media slds-media_center slds-scoped-notification_dark" role="status">
<div class="slds-media__figure">
<span class="slds-icon_container slds-icon-utility-info" title="information">
<svg class="slds-icon slds-icon_small" aria-hidden="true">
Overview of CSS Classes#
- Selector
- The CSS class being referred to.
- Summary
- A description of what the class does.
- Support
- Whether the class name is dev-ready (meaning it's fully vetted and tested and safe to use) or prototype (which means it's not fully vetted yet).
- Restrict
- The selector that the class name is allowed to be used on.
- Variant
- The base level pattern for a component. A variant can be extended to create another variant of that component, for example, a stateful button is a derivative of the base button.
- Modifier
- A single class that can be added to an HTML element of a component to modify its output. Typically these will be colors, sizing and positioning.
Selector | .slds-scoped-notification |
---|---|
Summary | |
Support | dev-ready |
Restrict | div |
Variant | True |
Selector | .slds-scoped-notification_light |
---|---|
Summary | This renders a light notification |
Restrict | .slds-scoped-notification |
Modifier | True |
Selector | .slds-scoped-notification_dark |
---|---|
Summary | This renders the dark notification |
Restrict | .slds-scoped-notification |
Modifier | True |
Scoped Notifications Release Notes
2.11.5
- Added examples for Informational, Success, Warning and Error states