Add justified button groups for link buttons; reorganize dropdowns and button groups docs sections

This commit is contained in:
Mark Otto
2013-02-05 00:30:03 -08:00
parent 5c1cc722e7
commit c09b994eea
4 changed files with 63 additions and 58 deletions

View File

@@ -142,3 +142,17 @@
.btn-group-vertical .btn-large:last-child {
border-radius: 0 0 @border-radius-large @border-radius-large;
}
// Justified button groups
// ----------------------
.btn-group-justified {
display: table;
width: 100%;
.btn {
float: none;
display: table-cell;
width: 1%;
}
}