Notifications

  • Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.
  • It is a paradisematic country,in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. Find out more.
  • It is a paradisematic country,in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. Find out more.
  • You have One New Pending Invitation: Carillion AMBS Limited.
  • You have One New Pending Invitation: Amey Group Services Ltd.
  • You have One New Pending Invitation: Amey Group Services Ltd.

Buttons

Standard Buttons

Buttons comprise of a surround and 2 styles, toggled by an optional attribute. The attribute appears in the opening <button> tag.

Style Attribute Value Example
Standard
Disabled disabled disabled
        
          <button type="button" class="btn btn-default">
            <!-- Insert text here -->
          </button>
        
      

Icon Buttons

Icon buttons comprise of a surround, an icon (see Icons) and 2 styles, toggled by an optional attribute. The attribute appears in the opening <button> tag.

Style Attribute Value Example
Standard
Disabled disabled disabled
        
          <button type="button" class="btn btn-default btn-icon">
            <!-- Insert icon here -->
          </button>
        
      

Standard Buttons with Icons

These buttons comprise of a surround, text, an icon (see Icons) and 2 styles, toggled by an optional attribute. The attribute appears in the opening <button> tag.

Style Attribute Value Example
Standard
Disabled disabled disabled
        
          <button type="button" class="btn btn-default btn-with-icon">
            <!-- Insert text here -->
            <span class="fa fa-search"></span>
          </button>
        
      

Text Buttons

Text buttons comprise of a surround and 2 styles, toggled by an optional attribute. The attribute appears in the opening <button> tag.

Style Attribute Value Example
Standard
Disabled disabled disabled
        
          <button type="button" class="btn btn-text">
            <!-- Insert text here -->
          </button>
        
      

Arrow Button

Arrow buttons comprise of a surround and 2 styles, toggled by an optional attribute. The attribute appears in the opening <button> tag.

Style Attribute Value Example
Standard
Disabled disabled disabled
        
          <button type="button" class="btn btn-arrow" disabled="disabled"></button>
        
      

Multi-action Buttons

Multi-action buttons comprise of a surround, a list of standard buttons and 2 styles, toggled by an optional attribute. The attribute appears in both the first and second opening <button> tags. The lack of whitespace between the closing of the first button tag and the entirity of the second button is necessary to maintain the integrity of the button across all supported browsers.

Style Attribute Value Example
Standard
Disabled disabled disabled
        
          <div class="btn-group btn-dropdown">
            <button type="button" class="btn btn-default">
              <!-- Insert text here -->
            </button><button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="fa fa-chevron-down"></span></button>
            <ul class="dropdown-menu" role="menu">
              <li>
                <button type="button" class="btn">
                  <!-- Insert text here -->
                </button>
              </li>
              <li>
                <button type="button" class="btn">
                  <!-- Insert text here -->
                </button>
              </li>
            </ul>
          </div>
        
      

Button Group

Group a series of buttons together on a single line with the button group





        
      <!-- Button Group -->
      <div class="btn-group" role="group">
        <button type="button" class="btn btn-default">Left</button>
        <button type="button" class="btn btn-default">Middle</button>
        <button type="button" class="btn btn-default">Right</button>
      </div>

      <!-- Button group with a disabled button -->
      <div class="btn-group" role="group">
        <button type="button" class="btn btn-default">Left</button>
        <button type="button" class="btn btn-default">Middle</button>
        <button type="button" class="btn btn-default" disabled="disabled">Right</button>
      </div>