2015-12-16 04:31:21 +03:00
|
|
|
---
|
|
|
|
layout: docs
|
|
|
|
title: Buttons
|
|
|
|
group: material-design
|
|
|
|
---
|
|
|
|
|
|
|
|
## Contents
|
|
|
|
|
|
|
|
* Will be replaced with the ToC, excluding the "Contents" header
|
|
|
|
{:toc}
|
|
|
|
|
|
|
|
## Flat
|
|
|
|
|
|
|
|
{% example html %}
|
|
|
|
<button type="button" class="btn btn-primary">Primary</button>
|
2015-12-16 23:38:44 +03:00
|
|
|
<button type="button" class="btn btn-secondary">Secondary</button>
|
2015-12-16 04:31:21 +03:00
|
|
|
<button type="button" class="btn btn-success">Success</button>
|
|
|
|
<button type="button" class="btn btn-info">Info</button>
|
|
|
|
<button type="button" class="btn btn-warning">Warning</button>
|
|
|
|
<button type="button" class="btn btn-danger">Danger</button>
|
|
|
|
<button type="button" class="btn btn-link">Link</button>
|
2015-12-17 02:19:02 +03:00
|
|
|
<button type="button" class="btn"><code>btn</code> only</button>
|
|
|
|
<button type="button" class="btn active"><code>.active</code></button>
|
2015-12-16 04:31:21 +03:00
|
|
|
{% endexample %}
|
|
|
|
|
|
|
|
### Disabled
|
|
|
|
|
|
|
|
{% example html %}
|
|
|
|
<fieldset disabled>
|
|
|
|
<button type="button" class="btn"><code>btn</code> only</button>
|
|
|
|
<button type="button" class="btn btn-primary">Primary</button>
|
2015-12-16 23:38:44 +03:00
|
|
|
<button type="button" class="btn btn-secondary">Secondary</button>
|
2015-12-16 04:31:21 +03:00
|
|
|
<button type="button" class="btn btn-success">Success</button>
|
|
|
|
<button type="button" class="btn btn-info">Info</button>
|
|
|
|
<button type="button" class="btn btn-warning">Warning</button>
|
|
|
|
<button type="button" class="btn btn-danger">Danger</button>
|
|
|
|
<button type="button" class="btn btn-link">Link</button>
|
|
|
|
</fieldset>
|
|
|
|
{% endexample %}
|
|
|
|
|
|
|
|
## Raised
|
|
|
|
|
|
|
|
{% example html %}
|
|
|
|
<button type="button" class="btn btn-raised btn-primary">Primary</button>
|
2015-12-16 23:38:44 +03:00
|
|
|
<button type="button" class="btn btn-raised btn-secondary">Secondary</button>
|
2015-12-16 04:31:21 +03:00
|
|
|
<button type="button" class="btn btn-raised btn-success">Success</button>
|
|
|
|
<button type="button" class="btn btn-raised btn-info">Info</button>
|
|
|
|
<button type="button" class="btn btn-raised btn-warning">Warning</button>
|
|
|
|
<button type="button" class="btn btn-raised btn-danger">Danger</button>
|
|
|
|
<button type="button" class="btn btn-raised btn-link">Link</button>
|
2015-12-17 02:19:02 +03:00
|
|
|
<button type="button" class="btn btn-raised active"><code>.active</code></button>
|
2015-12-16 04:31:21 +03:00
|
|
|
{% endexample %}
|
|
|
|
|
|
|
|
### Disabled
|
|
|
|
{% example html %}
|
|
|
|
<fieldset disabled>
|
2015-12-16 23:38:44 +03:00
|
|
|
<button type="button" class="btn btn-raised btn-secondary">Secondary</button>
|
2015-12-16 04:31:21 +03:00
|
|
|
<button type="button" class="btn btn-raised btn-success">Success</button>
|
2015-12-16 23:38:44 +03:00
|
|
|
<button type="button" class="btn btn-raised btn-primary">Primary</button>
|
2015-12-16 04:31:21 +03:00
|
|
|
<button type="button" class="btn btn-raised btn-info">Info</button>
|
|
|
|
<button type="button" class="btn btn-raised btn-warning">Warning</button>
|
|
|
|
<button type="button" class="btn btn-raised btn-danger">Danger</button>
|
|
|
|
<button type="button" class="btn btn-raised btn-link">Link</button>
|
|
|
|
</fieldset>
|
|
|
|
{% endexample %}
|
|
|
|
|
|
|
|
## Floating Action
|
|
|
|
|
|
|
|
{% example html %}
|
2015-12-16 23:38:44 +03:00
|
|
|
<button type="button" class="btn btn-primary btn-fab">
|
2015-12-16 04:31:21 +03:00
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
2015-12-16 23:38:44 +03:00
|
|
|
<button type="button" class="btn btn-secondary btn-fab">
|
2015-12-16 04:31:21 +03:00
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-success btn-fab">
|
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-info btn-fab">
|
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-warning btn-fab">
|
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-danger btn-fab">
|
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
2015-12-17 19:04:08 +03:00
|
|
|
<button type="button" class="btn btn-danger btn-fab active">
|
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
2015-12-16 04:31:21 +03:00
|
|
|
{% endexample %}
|
|
|
|
|
|
|
|
### Disabled
|
|
|
|
{% example html %}
|
|
|
|
<fieldset disabled>
|
2015-12-16 23:38:44 +03:00
|
|
|
<button type="button" class="btn btn-primary btn-fab">
|
2015-12-16 04:31:21 +03:00
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
2015-12-16 23:38:44 +03:00
|
|
|
<button type="button" class="btn btn-secondary btn-fab">
|
2015-12-16 04:31:21 +03:00
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-success btn-fab">
|
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-info btn-fab">
|
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-warning btn-fab">
|
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-danger btn-fab">
|
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
|
|
|
</fieldset>
|
|
|
|
{% endexample %}
|
|
|
|
|
2015-12-21 19:28:56 +03:00
|
|
|
### Sizes
|
|
|
|
|
|
|
|
Using `btn-fab-sm` on the button, or using `btn-group-sm` on the enclosing element of a `btn-fab` renders a small variation.
|
|
|
|
|
2015-12-16 04:31:21 +03:00
|
|
|
{% example html %}
|
2015-12-21 19:28:56 +03:00
|
|
|
<span class="btn-group-lg">
|
2015-12-16 04:31:21 +03:00
|
|
|
<button type="button" class="btn btn-danger btn-fab">
|
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
2015-12-21 19:28:56 +03:00
|
|
|
</span>
|
|
|
|
<button type="button" class="btn btn-danger btn-fab">
|
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-danger btn-fab btn-fab-sm">
|
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
|
|
|
<span class="btn-group-sm">
|
|
|
|
<button type="button" class="btn btn-danger btn-fab">
|
2015-12-17 19:04:08 +03:00
|
|
|
<i class="material-icons">grade</i>
|
|
|
|
</button>
|
2015-12-21 19:28:56 +03:00
|
|
|
</span>
|
2015-12-16 04:31:21 +03:00
|
|
|
{% endexample %}
|
|
|
|
|
|
|
|
|
|
|
|
## Sizes
|
|
|
|
{% example html %}
|
|
|
|
<button type="button" class="btn btn-raised btn-lg">Large button</button>
|
|
|
|
<button type="button" class="btn btn-raised">Default button</button>
|
|
|
|
<button type="button" class="btn btn-raised btn-sm">Small button</button>
|
|
|
|
{% endexample %}
|