Commit 451a642a authored by Simon's avatar Simon

Added a black/dark button

parent b36a744f
......@@ -1205,6 +1205,11 @@
<td><a class="btn btn-danger" href="#">{{_i}}Danger{{/i}}</a></td>
<td><code>.btn-danger</code></td>
<td>{{_i}}Indicates a dangerous or potentially negative action{{/i}}</td>
</tr>
<tr>
<td><a class="btn btn-dark" href="#">{{_i}}Dark{{/i}}</a></td>
<td><code>.btn-dark</code></td>
<td>{{_i}}Indicates a potential abort or black magic{{/i}}</td>
</tr>
</tbody>
</table>
......
......@@ -107,7 +107,9 @@
.btn-success,
.btn-success:hover,
.btn-info,
.btn-info:hover {
.btn-info:hover,
.btn-dark,
.btn-dark:hover {
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
color: @white;
}
......@@ -116,7 +118,8 @@
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active {
.btn-info.active,
.btn-dark.active {
color: rgba(255,255,255,.75);
}
......@@ -141,6 +144,10 @@
.btn-info {
.buttonBackground(#5bc0de, #2f96b4);
}
// Dark appears as black
.btn-dark {
.buttonBackground(#454545, #262626);
}
// Cross-browser Jank
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment