Button Groups

Button Groups join two or more buttons into a unified control, formerly called a segmented control.

Variations

Default

Use to create a mutually exclusive toggle. Buttons within the group follow the same visual and behavioral conventions as the secondary Button.

Default
Hover
Active
Focus
<div class="mds-button-group">
    <button class="mds-button mds-button--secondary" type="button"> Cyclical </button>
    <button class="mds-button mds-button--secondary" type="button"> Defensive </button>
    <button class="mds-button mds-button--secondary" type="button"> Sensitive </button>
</div>
Disabled
<div class="mds-button-group">
    <button class="mds-button mds-button--secondary" type="button"> Cyclical </button>
    <button class="mds-button mds-button--secondary" type="button"> Defensive </button>
    <button class="mds-button mds-button--secondary" type="button" disabled> Sensitive </button>
</div>

Full Width

Use when you want the button group to span the full width of its container.

Full Width
<div class="mds-button-group mds-button-group--justify">
    <label class="mds-button__input-outer-wrapper" for="cyclical--87662">
        <input id="cyclical--87662" class="mds-button__input" type="radio" name="radio-colors-secondary" checked>
        <span for="cyclical--87662" class="mds-button mds-button--secondary"> Cyclical </span>
    </label>
    <label class="mds-button__input-outer-wrapper" for="defensive--64205">
        <input id="defensive--64205" class="mds-button__input" type="radio" name="radio-colors-secondary">
        <span for="defensive--64205" class="mds-button mds-button--secondary"> Defensive </span>
    </label>
    <label class="mds-button__input-outer-wrapper" for="sensitive--57605">
        <input id="sensitive--57605" class="mds-button__input" type="radio" name="radio-colors-secondary">
        <span for="sensitive--57605" class="mds-button mds-button--secondary"> Sensitive </span>
    </label>
</div>

With Icons

Use Icons to provide additional affordance to a button.

With Icons
<div class="mds-button-group">
    <label class="mds-button__input-outer-wrapper" for="filter--63628">
        <input id="filter--63628" class="mds-button__input" type="radio" name="radio-mixed-secondary" checked>
        <span for="filter--63628" class="mds-button mds-button--secondary">
            <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
                <use xlink:href="/icons/mds.svg#funnel--s"> </use>
            </svg>
            <span class="mds-button__text"> Filter </span>
        </span>
    </label>
    <label class="mds-button__input-outer-wrapper" for="upload--39368">
        <input id="upload--39368" class="mds-button__input" type="radio" name="radio-mixed-secondary">
        <span for="upload--39368" class="mds-button mds-button--secondary">
            <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
                <use xlink:href="/icons/mds.svg#upload--s"> </use>
            </svg>
            <span class="mds-button__text"> Upload </span>
        </span>
    </label>
    <label class="mds-button__input-outer-wrapper" for="search--20467">
        <input id="search--20467" class="mds-button__input" type="radio" name="radio-mixed-secondary">
        <span for="search--20467" class="mds-button mds-button--secondary">
            <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
                <use xlink:href="/icons/mds.svg#search--s"> </use>
            </svg>
            <span class="mds-button__text"> Search </span>
        </span>
    </label>
</div>
Do place descriptive icons to the left of the button label.
Do place descriptive icons to the left of the button label.
Don‘t place descriptive icons to the right of the button label.
Don‘t place descriptive icons to the right of the button label.
Do place the down-caret icon to the right of a button’s label to indicate a Menu.
Do place the down-caret icon to the right of a button’s label to indicate a Menu.
Don‘t use any other directional icons in a button group.
Don‘t use any other directional icons in a button group.

Icon Only

Use to create toolbars.

Default
Hover
Focus
<div class="mds-button-group mds-button-group--icon-only">
    <button class="mds-button mds-button--icon-only" type="button">
        <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
            <use xlink:href="/icons/mds.svg#bell-padless"> </use>
        </svg>
    </button>
    <button class="mds-button mds-button--icon-only" type="button">
        <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
            <use xlink:href="/icons/mds.svg#create-padless"> </use>
        </svg>
    </button>
    <button class="mds-button mds-button--icon-only" type="button">
        <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
            <use xlink:href="/icons/mds.svg#question-circle-padless"> </use>
        </svg>
    </button>
    <button class="mds-button mds-button--icon-only" type="button">
        <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
            <use xlink:href="/icons/mds.svg#person-padless"> </use>
        </svg>
    </button>
</div>
Disabled
<div class="mds-button-group mds-button-group--icon-only">
    <button class="mds-button mds-button--icon-only" type="button">
        <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
            <use xlink:href="/icons/mds.svg#bell-padless"> </use>
        </svg>
    </button>
    <button class="mds-button mds-button--icon-only" type="button">
        <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
            <use xlink:href="/icons/mds.svg#create-padless"> </use>
        </svg>
    </button>
    <button class="mds-button mds-button--icon-only mds-button--disabled" type="button" disabled>
        <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
            <use xlink:href="/icons/mds.svg#question-circle-padless"> </use>
        </svg>
    </button>
    <button class="mds-button mds-button--icon-only" type="button">
        <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
            <use xlink:href="/icons/mds.svg#person-padless"> </use>
        </svg>
    </button>
</div>
  • Always include aria-label attributes to describe each button's intent. For example, <button aria-label="Close" onclick="myDialog.close()">X</button>.
  • For single icons, use the icon-only Button component.
  • Consider pairing with a Tooltip to describe the icon’s underlying action.
Icon-only Button Group paired with a tooltip.
  • When pairing with a button, use a $mds-space-inline-right-2-x space, and vertically align middle the icon-only button group.
Icon-only Button Group alignment paired with a button.
Do place all icon-only button groups to the left or right of paired buttons.
Do place all icon-only button groups to the left or right of paired buttons.
Don‘t place icon-only button groups between paired buttons.
Don‘t place icon-only button groups between paired buttons.

Sizing

Small




Medium (Default)




Large


<div class="mds-button-group">
    <label class="mds-button__input-outer-wrapper" for="cyclical--25630">
        <input id="cyclical--25630" class="mds-button__input" type="radio" name="small" checked>
        <span for="cyclical--25630" class="mds-button mds-button--secondary mds-button--small"> Cyclical </span>
    </label>
    <label class="mds-button__input-outer-wrapper" for="defensive--2906">
        <input id="defensive--2906" class="mds-button__input" type="radio" name="small">
        <span for="defensive--2906" class="mds-button mds-button--secondary mds-button--small"> Defensive </span>
    </label>
    <label class="mds-button__input-outer-wrapper" for="sensitive--89230">
        <input id="sensitive--89230" class="mds-button__input" type="radio" name="small">
        <span for="sensitive--89230" class="mds-button mds-button--secondary mds-button--small"> Sensitive </span>
    </label>
</div>
<br>
<br>
<div class="mds-button-group">
    <label class="mds-button__input-outer-wrapper" for="filter--6677">
        <input id="filter--6677" class="mds-button__input" type="radio" name="small-with-icon" checked>
        <span for="filter--6677" class="mds-button mds-button--secondary mds-button--small">
            <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
                <use xlink:href="/icons/mds.svg#funnel--s"> </use>
            </svg>
            <span class="mds-button__text"> Filter </span>
        </span>
    </label>
    <label class="mds-button__input-outer-wrapper" for="upload--25691">
        <input id="upload--25691" class="mds-button__input" type="radio" name="small-with-icon">
        <span for="upload--25691" class="mds-button mds-button--secondary mds-button--small">
            <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
                <use xlink:href="/icons/mds.svg#upload--s"> </use>
            </svg>
            <span class="mds-button__text"> Upload </span>
        </span>
    </label>
    <label class="mds-button__input-outer-wrapper" for="search--47960">
        <input id="search--47960" class="mds-button__input" type="radio" name="small-with-icon">
        <span for="search--47960" class="mds-button mds-button--secondary mds-button--small">
            <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
                <use xlink:href="/icons/mds.svg#search--s"> </use>
            </svg>
            <span class="mds-button__text"> Search </span>
        </span>
    </label>
</div>
<br>
<br>
<div class="mds-button-group mds-button-group--icon-only">
    <button class="mds-button mds-button--icon-only mds-button--small" type="button">
        <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
            <use xlink:href="/icons/mds.svg#search--s"> </use>
        </svg>
    </button>
    <button class="mds-button mds-button--icon-only mds-button--small" type="button">
        <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
            <use xlink:href="/icons/mds.svg#heart--s"> </use>
        </svg>
    </button>
    <button class="mds-button mds-button--icon-only mds-button--small" type="button">
        <svg class="mds-icon mds-button__icon mds-button__icon--left" aria-hidden="true">
            <use xlink:href="/icons/mds.svg#pencil--s"> </use>
        </svg>
    </button>
</div>

Icon Size

Icon size is predetermined and applied automatically. To avoid undesirable scaling of icon artwork, use the chart below to choose the correct icon size to use in your button group.

Type
Small
Medium
Large

Default

Small Icon

Small Icon

Default Icon

Icon Only

Small Icon

Default Icon

N/A

Guidelines

Use When

  • Toggling through content in an adjacent container.
  • Switching units, currency, or increments.

Visual Language

  • Never allow button groups to wrap, instead, consider using a single Button that triggers a Menu of options.

Behaviors

  • By default, the button group should start with its first item in the active state.

Editorial

  • This component looks best when the content is balanced.
  • Ideally, button labels should have the same number of words. Preferably one word each.
  • When impossible, button labels should be within one word of each other, count wise.
    • Do: Files / Forms & Reports
    • Don't: Files / Market Commentary for Advisors / Reports
  • See Buttons for more guidance.

Accessibility

  • Include a role="group" attribute for a default button group.
    • If a button group is used for navigation, set role="navigation".
    • If a button group is being used as a toolbar, set role="toolbar".
  • Include an aria-label="..." to describe the intention of the button group.
    • For example, aria-label="View Toggle" could describe a button group set that changes the view of a content module below the button group.
  • See Buttons for more guidance.

Code Reference

CSS Class References

Class
Applies to
Outcome

mds-button-group

<div>

Adding an mds-button-group wrapper to a group of mds-buttons initializes the button group component and adjusts the spacing between the buttons to conform into one conjoined group.

mds-button-group--justify

mds-button-group

Adding this modifier to the mds-button-group will set the component to fill the full width of its container. The individual mds-buttons within the group will all receive the same widths, and be evenly dispersed across the wrapping container.

mds-button-group--icon-only

mds-button-group

Adding this modifier to the mds-button-group will apply overrides for icon-only buttons.

mds-button-group--flex

mds-button-group

Deprecated, will be removed in v3.0. Adding this modifier keeps all of the buttons the same height even when one of the buttons has wrapping text. Only use when text wrapping occurs within the button group.

©2018 Morningstar, Inc. All rights reserved. Terms of Use