UI components

Buttons

Use buttons to signal actions.

Primary buttons
Secondary buttons
Buttons on a dark background

Big button

<h6>Primary buttons</h6>
<div class="button_wrapper">





<button class="oit-button">Default</button>
<button class="oit-button oit-button-hover">Hover</button>
  <button class="oit-button oit-button-active">Active</button>
  <button class="oit-button oit-focus">Focus</button>
  <button class="oit-button" disabled>Disabled</button>
  <button class="oit-button-disabled" disabled>Disabled (deprecated)</button>



<style scoped>
  .dark-bg {
    background-color: #212121;
  }
</style>


</div>

<h6>Secondary buttons</h6>
<div class="button_wrapper">





<button class="oit-button-secondary">Default</button>
<button class="oit-button-secondary oit-button-hover">Hover</button>
  <button class="oit-button-secondary oit-button-active">Active</button>
  <button class="oit-button-secondary oit-focus">Focus</button>
  <button class="oit-button-secondary" disabled>Disabled</button>
  <button class="oit-button-secondary-disabled" disabled>Disabled (deprecated)</button>



<style scoped>
  .dark-bg {
    background-color: #212121;
  }
</style>


</div>

<h6>Buttons on a dark background</h6>
<div class="button_wrapper">




  <div class="dark-bg">

<button class="oit-button-secondary-inverse">Default</button>
<button class="oit-button-secondary-inverse oit-button-hover">Hover</button>
  <button class="oit-button-secondary-inverse oit-button-active">Active</button>
  <button class="oit-button-secondary-inverse oit-focus">Focus</button>
  <button class="oit-button-secondary-inverse" disabled>Disabled</button>
  <button class="oit-button-secondary-inverse-disabled" disabled>Disabled (deprecated)</button>


</div>

<style scoped>
  .dark-bg {
    background-color: #212121;
  }
</style>


</div>

<h6>Big button</h6>
<div class="button_wrapper">





<button class="oit-button-big">Default</button>




<style scoped>
  .dark-bg {
    background-color: #212121;
  }
</style>


</div>

Implementation

The examples demonstrate how to use button elements. To use a button style on an anchor link, add the oit-button class to your anchor link.

To use a different style button on your anchor link, add the special button class in addition to oit-button:

  • oit-button-primary-alt
  • oit-button-secondary
  • oit-button-gray
  • oit-button-outline
  • oit-button-outline-inverse
  • oit-button-disabled
  • oit-button-big

For example, a secondary button style would use the following code: <a class="oit-button oit-button-secondary" href="/my-link">My button</a>

Accessibility

  • Buttons should display a visible focus state when users tab to them.
  • Avoid using <div> or <img> tags to create buttons. Screen readers don’t automatically know either is a usable button.
  • When styling links to look like buttons, remember that screen readers handle links slightly differently than they do buttons. Pressing the Space key triggers a button, but pressing the Enter key triggers a link.

Usability

When to use
  • Use buttons for the most important actions you want users to take on your site, such as “download,” “sign up,” or “log out.”
When to consider something else
  • If you want to lead users between pages of a website. Use links instead.
  • Less popular or less important actions may be visually styled as links.
Guidance
  • Generally, use primary buttons for actions that go to the next step and use secondary buttons for actions that happen on the current page.
  • Style the button most users should click in a way that distinguishes from other buttons on the page. Try using the “large button” or the most visually distinct fill color.
  • Make sure buttons should look clickable—use color variations to distinguish static, hover and active states.
  • Avoid using too many buttons on a page.
  • Use sentence case for button labels.
  • Button labels should be as short as possible with “trigger words” that your users will recognize to clearly explain what will happen when the button is clicked (for example, “download,” “view” or “sign up”).
  • Make the first word of the button’s label a verb. For example, instead of “Complaint Filing” label the button “File a complaint.”
  • At times, consider adding an icon to signal specific actions (“download”, “open in a new window”, etc).