Updated docs too by adding all the color buttons to the page
```html_example
-<button type="button" class="button" disabled>Disabled</button>
<a class="button disabled" href="#" aria-disabled>Disabled</a>
+<button type="button" class="button primary" disabled>Disabled</button>
+<button type="button" class="button secondary" disabled>Disabled</button>
+<button type="button" class="button success" disabled>Disabled</button>
+<button type="button" class="button alert" disabled>Disabled</button>
+<button type="button" class="button warning" disabled>Disabled</button>
```
---
@mixin button-disabled($color: $primary-color) {
opacity: $button-opacity-disabled;
cursor: not-allowed;
-
+ background-color: $color;
&:hover, &:focus {
- background-color: $color;
- color: $button-color;
+ box-shadow:none;
}
}