Buttons
- HTML/CSS:Dev Ready
- Web Component:In Progress (1 of 4 variants)
- Layout:Responsive
Sections
You are currently viewing a sandbox preview version of Spring ’20 | Go back to Summer ’20
<button class="slds-button">Button</button>
<button class="slds-button slds-button_neutral">Neutral Button</button>
<button class="slds-button slds-button_brand">Brand Button</button>
<button class="slds-button slds-button_outline-brand">Outline Brand Button</button>
About Buttons#
Buttons should be used in situations where users might need to:
- submit a form
- begin a new task
- trigger a new UI element to appear on the page
- specify a new or next step in a process
Button vs. Link#
The HTML elements for buttons and links describe a very specific type of action that is going to be taken when they are used. It is important you know when to use which, as the distinction matters:
- Use a link when you’re navigating to another place, such as: a "view all" page, "Jane Chen" profile, a page "skip link" etc.
- Use buttons when you are performing an action, such as: "submit," "merge," "create new," "upload," etc.
- An action is almost always on the same page
Accessibility#
If pressing a Button results in a new URL, or the resultant UI makes sense as "a new browser tab", that is a link <a>
. Everything else is a <button>
.
The distinction is important to screen reader users to know what's going to happen next. Will I navigate somewhere or will something happen on the page? So it's important to choose the right HTML element for the job.
If you absolutely cannot use a <button />
element for an action and instead need to use an <a />
, you are required to do 2 things:
- Add
role="button"
attribute to the<a />
to make the element announce itself as abutton
element. - Add a JavaScript event handler for when the user presses the space key. This is because a
button
element will respond by default to both the enter and space keys being pressed, but an<a />
element will not.
Finally, color alone does not suffice when conveying the meaning of buttons. Ensure that the text you use in the button matches the meaning you are trying to convey via color. For example, if you use the destructive button to point out a potential warning, make sure the text communicates the same message.
<a class="slds-button" href="javascript:void(0);">Base Link</a>
<a class="slds-button slds-button_neutral" href="javascript:void(0);">Neutral Link</a>
<a class="slds-button slds-button_brand" href="javascript:void(0);">Brand Link</a>
<a class="slds-button slds-button_outline-brand" href="javascript:void(0);">Outline Brand Link</a>
Links that look like Buttons#
Use these with caution - dictation software users may not be able to properly identify these actions, as they can say "show buttons" and these won't highlight since they are semantically links, even though they may look like buttons.
Mobile#
On mobile devices, such as phones and other devices that have touch as the primary method of interaction, buttons will have an increased size to accommodate tapping with a finger instead of the more precise mouse cursor.
Below is a live example of what to expect in that context. No code changes are needed in the Salesforce platform context as this change occurs automatically in the appropriate context. For those users not on the Salesforce platform, these modifications will occur automatically when the secondary touch stylesheet is loaded and the device has touch as the primary method of interaction.
Base#
The base slds-button
looks like a plain text link. It removes all the styling of the native button.
The base and neutral buttons are used most frequently and can be used multiple times per feature. Use these buttons when the actions are of secondary importance to the content surrounding it, such as in the actions ribbon in a page header.
<button class="slds-button">Button</button>
Variations#
Neutral#
Add the slds-button_neutral
class to create a neutral button.
<button class="slds-button slds-button_neutral">Neutral Button</button>
Brand#
To create the brand button, add the slds-button_brand
class to the slds-button
class. The brand color tokens can be overridden for theme specific usage.
The Brand button generally should only be used once per component screen at any one time. It is used for when there is an action that is clearly more important than the other actions and you need to draw attention to it. An example is when you have a “Save” and “Cancel” button. The “Save” is the primary action.
Not all features need to have primary actions, sometimes the actions are secondary to the content and are all of equal importance.
<button class="slds-button slds-button_brand">Brand Button</button>
Outline Brand#
To create the outline brand button, add the slds-button_outline-brand
class to the slds-button
class. The brand color tokens can be overridden for theme specific usage.
<button class="slds-button slds-button_outline-brand">Outline Brand Button</button>
Inverse#
Use the inverse button on dark backgrounds. Add the slds-button_inverse
class to the slds-button
class.
<div style="background-color:#16325c;padding:0.5rem">
<button class="slds-button slds-button_inverse">Inverse Button</button>
</div>
Destructive#
To create the destructive button, add the slds-button_destructive
class to the slds-button
class.
This button is used to indicate a destructive action to the user, like permanently erasing data.
<button class="slds-button slds-button_destructive">Destructive Button</button>
Text Destructive#
To create the text destructive button, add the slds-button_text-destructive
class to the slds-button
class.
This button is used to indicate a destructive action to the user, like permanently erasing data. Use this version when the Destructive button would be too distracting to the experience.
<button class="slds-button slds-button_text-destructive">Text Destructive Button</button>
Success#
To create the success button, add the slds-button_success
class to the slds-button
class.
<button class="slds-button slds-button_success">Success Button</button>
Disabled#
Use a disabled attribute when a button can’t be clicked. To create a disabled button, append the disabled
attribute to the button.
<button class="slds-button" disabled="">Button</button>
<button class="slds-button slds-button_neutral" disabled="">Neutral Button</button>
<button class="slds-button slds-button_brand" disabled="">Brand Button</button>
<button class="slds-button slds-button_outline-brand" disabled="">Outline Brand Button</button>
With Icons#
The SVG, element, or icon inside the button receives the slds-button__icon
class. You can position the icon on the left or the right using slds-button__icon_left
or slds-button__icon_right
, which applies the correct amount of space between the icon and the text.
Left Icon#
<button class="slds-button slds-button_neutral">
<svg class="slds-button__icon slds-button__icon_left" aria-hidden="true">
<use xlink:href="/assets/icons/utility-sprite/svg/symbols.svg#download"></use>
</svg>Button Neutral</button>
Mobile context changes
Please be aware that in a mobile context button icons will automatically change slightly as shown in the example below. For more details please see the mobile specific documentation above.
Right Icon#
<button class="slds-button slds-button_neutral">Button Neutral
<svg class="slds-button__icon slds-button__icon_right" aria-hidden="true">
<use xlink:href="/assets/icons/utility-sprite/svg/symbols.svg#download"></use>
</svg>
Stateful#
Stateful buttons have three states: not selected (default), selected and focused, and selected with hover state.
The stateful button requires the slds-button_stateful
class and the slds-button_neutral
class in addition to the slds-button
class. Stateful buttons are only used with the neutral variation.
The button contains three spans with classes that hide or show the content of the spans based on the class on the button. Each span contains text and a corresponding icon. The SVG will have the slds-button__icon_left
class setting the icon on the left.
Accessibility Requirement
Be sure to include the attribute
aria-live="assertive"
on the button. Thearia-live="assertive"
attribute means the value of the<span>
inside the button will be spoken whenever it changes.
JavaScript Requirement
When the user clicks the button, use JavaScript to toggle the class from
slds-not-selected
toslds-is-selected-clicked
. As soon as focus leaves the button, use JavaScript to toggle the class fromslds-is-selected-clicked
toslds-is-selected
.
Not Selected#
Stateful button uses the class slds-not-selected
in its initial state.
<button class="slds-button slds-button_neutral slds-button_stateful slds-not-selected" aria-live="assertive">
<span class="slds-text-not-selected">
<svg class="slds-button__icon slds-button__icon_small slds-button__icon_left" aria-hidden="true">
<use xlink:href="/assets/icons/utility-sprite/svg/symbols.svg#add"></use>
Selected and Focused#
When selected and still focused, stateful button uses the class slds-is-selected-clicked
.
<button class="slds-button slds-button_neutral slds-button_stateful slds-is-selected-clicked" aria-live="assertive">
<span class="slds-text-not-selected">
<svg class="slds-button__icon slds-button__icon_small slds-button__icon_left" aria-hidden="true">
<use xlink:href="/assets/icons/utility-sprite/svg/symbols.svg#add"></use>
Selected with Hover State#
Once selected and blurred (user moved focus away from the button), stateful button uses the class slds-is-selected
.
<button class="slds-button slds-button_neutral slds-button_stateful slds-is-selected" aria-live="assertive">
<span class="slds-text-not-selected">
<svg class="slds-button__icon slds-button__icon_small slds-button__icon_left" aria-hidden="true">
<use xlink:href="/assets/icons/utility-sprite/svg/symbols.svg#add"></use>
Dual Stateful Button#
Dual Stateful buttons have two states, similar to a Toggle Button: not pressed (default), and pressed.
The Dual Stateful button requires the slds-button_dual-stateful
class, along with a combination of the slds-button
and slds-button_neutral
classes. While Dual Stateful buttons are only used with the neutral Button variation, the pressed state changes the button style to that of the Brand variation.
The button contains two spans. Each span contains display text and a corresponding SVG icon with the class slds-button__icon-left
and has classes that hide or show the contents. By default, the first span with the class slds-text-is-not-pressed
is displayed; when the class slds-is-pressed
is applied to the parent button, the span with the class slds-text-is-pressed
is displayed.
Accessibility Requirement
Be sure to include the attribute
aria-live="assertive"
on the button. Thearia-live="assertive"
attribute means the value of the<span>
inside the button will be spoken whenever it changes.
JavaScript Requirement
When the user clicks the button, use JavaScript to toggle the
slds-is-pressed
class on or off, depending on the previous state. Remember, only the pressed state requires this class.
Not Pressed#
<button class="slds-button slds-button_neutral slds-button_dual-stateful" aria-live="assertive">
<span class="slds-text-not-pressed">
<svg class="slds-button__icon slds-button__icon_small slds-button__icon_left" aria-hidden="true">
<use xlink:href="/assets/icons/utility-sprite/svg/symbols.svg#add"></use>
Pressed#
To display the pressed state, use the class slds-is-pressed
on the <button>
element.
<button class="slds-button slds-button_neutral slds-button_dual-stateful slds-is-pressed" aria-live="assertive">
<span class="slds-text-not-pressed">
<svg class="slds-button__icon slds-button__icon_small slds-button__icon_left" aria-hidden="true">
<use xlink:href="/assets/icons/utility-sprite/svg/symbols.svg#add"></use>
Sizing#
Stretch#
To allow the button's width to take up the entire width available, apply the slds-button_stretch
class to the button.
<button class="slds-button slds-button_neutral slds-button_stretch">Stretched Neutral Button</button>
Full Width#
Creates a full width button with styling resets
<button class="slds-button slds-button_neutral slds-button_full-width">Full Width Neutral Button</button>
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-button |
---|---|
Summary | This neutralizes all the base styles making it look like a text link |
Support | dev-ready |
Restrict | button, a, span |
Variant | True |
Selector | .slds-button_first |
---|---|
Summary | Explicitly style the first button in a button group |
Restrict | .slds-button |
Selector | .slds-button_middle |
---|---|
Summary | Explicitly style buttons in the middle (i.e., not first or last) in a button group |
Restrict | .slds-button |
Selector | .slds-button_last |
---|---|
Summary | Explicitly style the last button in a button group |
Restrict | .slds-button |
Selector | .slds-button_neutral |
---|---|
Summary | Creates the gray border with white background default style |
Restrict | .slds-button |
Modifier | True |
Selector | .slds-button_brand |
---|---|
Summary | Creates the brand blue Salesforce style |
Restrict | .slds-button |
Modifier | True |
Selector | .slds-button_outline-brand |
---|---|
Summary | Creates the outlined button with the brand color |
Restrict | .slds-button |
Modifier | True |
Selector | .slds-button_inverse |
---|---|
Summary | Creates the inverse style for dark backgrounds |
Restrict | .slds-button |
Modifier | True |
Selector | .slds-button_destructive |
---|---|
Summary | Creates a red button style |
Restrict | .slds-button |
Modifier | True |
Selector | .slds-button_text-destructive |
---|---|
Summary | Creates a neutral button with red text |
Restrict | .slds-button |
Modifier | True |
Selector | .slds-button_success |
---|---|
Summary | Creates a green button style |
Restrict | .slds-button |
Modifier | True |
Selector | .slds-button__icon |
---|---|
Summary | Sizing for icon that sits inside button__icon |
Support | dev-ready |
Restrict | .slds-button svg |
Variant | True |
Selector | .slds-button__icon_large |
---|---|
Summary | Large size button icon svg |
Restrict | .slds-button__icon |
Modifier | True |
Selector | .slds-button__icon_small |
---|---|
Summary | Small size button icon svg |
Restrict | .slds-button__icon |
Modifier | True |
Selector | .slds-button__icon_x-small |
---|---|
Summary | X-Small size button icon svg |
Restrict | .slds-button__icon |
Modifier | True |
Selector | .slds-button__icon_left |
---|---|
Summary | Position of icon when sitting to the left side of the text when inside a button |
Restrict | .slds-button__icon, .slds-button__icon_stateful |
Selector | .slds-button__icon_right |
---|---|
Summary | Position of icon when sitting to the right side of the text when inside a button |
Restrict | .slds-button__icon, .slds-button__icon_stateful |
Selector | .slds-icon_x-small |
---|---|
Summary | |
Restrict | .slds-icon, .slds-button__icon |
Modifier | True |
Selector | .slds-button_full-width |
---|---|
Summary | Creates a button style for full width that resets styling |
Restrict | .slds-button |
Modifier | True |
Selector | .slds-button_stretch |
---|---|
Summary | Creates a button style for 100% width with centered text that maintains current styling |
Restrict | .slds-button |
Modifier | True |
Selector | .slds-input__button_decrement |
---|---|
Summary | Positions decrement button within counter input field |
Restrict | .slds-button |
Selector | .slds-input__button_increment |
---|---|
Summary | Positions increment button within counter input field |
Restrict | .slds-button |
Selector | .slds-button_dual-stateful |
---|---|
Summary | Initiates a dual stateful button |
Support | dev-ready |
Restrict | button |
Variant | True |
Selector | .slds-text-not-pressed |
---|---|
Summary | Shown text when button is not pressed - default state |
Restrict | .slds-button_dual-stateful span |
Selector | .slds-text-pressed |
---|---|
Summary | Shown text when button is pressed |
Restrict | .slds-button_dual-stateful span |
Selector | .slds-is-pressed |
---|---|
Summary | When button is in pressed state |
Restrict | .slds-button_dual-stateful |
Modifier | True |
Selector | .slds-button_stateful |
---|---|
Summary | Initiates a stateful button |
Support | dev-ready |
Restrict | button |
Variant | True |
Selector | .slds-not-selected |
---|---|
Summary | Default state of a stateful button |
Restrict | .slds-button_stateful |
Modifier | True |
Selector | .slds-text-selected |
---|---|
Summary | Shown text when button is selected |
Restrict | .slds-button_stateful span |
Selector | .slds-text-selected-focus |
---|---|
Summary | Shown text when button is selected and focused |
Restrict | .slds-button_stateful span |
Selector | .slds-text-not-selected |
---|---|
Summary | Shown text when button is not selected - default state |
Restrict | .slds-button_stateful span |
Selector | .slds-is-selected-clicked |
---|---|
Summary | When button is selected and still has focus from click |
Restrict | .slds-button_stateful |
Modifier | True |
Selector | .slds-is-selected |
---|---|
Summary | When button is pressed and selected |
Restrict | .slds-button_stateful |
Modifier | True |
Buttons Release Notes
2.11.0
Changed
- For touch devices, update the line-height token of
.slds-button
to use the touch-specific token$height-tappable
(2.75rem) which is a system-wide touch token instead of using a component-specific token.
2.10.0
Fixed
- Fixed poor color contrast of inverse buttons on hover and focus
Changed
- Modify display of
slds-button
toinline-flex
- Center contents of contained Buttons with change of
display: inline-flex
toslds-button
justify-content: center
is now applied to the stretch variant.slds-button_stretch
to ensure centered text afterinline-flex
was added toslds-button
- For touch devices:
- Increase the line-height (which affects the overall visual height) to
$button-line-height-touch
(2.65rem) - Set the size of
.slds-button__icon
to$square-icon-medium-content
(1rem) - Boldened Button labels
- Increase the line-height (which affects the overall visual height) to
2.8.0
Added
- New Dual Stateful variation, which acts similar to a Toggle Button, by using the
slds-button_dual-stateful
class.- This variation toggles between the styling of a neutral button and a brand button.
- Added
slds-button_stretch
modifier for adjusting any style button to take 100% width of its container - Added examples of links that look like buttons (to be used sparingly)
Changed
- Updated the disabled styling for the success, destructive, and outline brand buttons to be consistent across variants
Fixed
- Prevented hover styling on success buttons when disabled
2.7.0
Added
slds-button_text-destructive
modifier option, which is styled as an invertedslds-button_descructive
button.- Added selector for
:disabled
pseudo-class.
Deprecated
- Deprecated the class
slds-button__icon_stateful
, which was located on the svg inside of the button. Use the Button Icon component with a small size modifier instead,slds-button__icon slds-button__icon_small
.