2012-01-05 13:01:42 -05:00
|
|
|
// BUTTON GROUPS
|
|
|
|
// -------------
|
|
|
|
|
2012-01-07 06:45:24 -05:00
|
|
|
|
|
|
|
// Make the div behave like a button
|
|
|
|
.btn-group {
|
|
|
|
position: relative;
|
|
|
|
.clearfix(); // clears the floated buttons
|
2012-01-27 19:40:14 -05:00
|
|
|
.ie7-restore-left-whitespace();
|
2012-01-07 06:45:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Space out series of button groups
|
|
|
|
.btn-group + .btn-group {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Optional: Group multiple button groups together for a toolbar
|
2012-01-05 13:01:42 -05:00
|
|
|
.btn-toolbar {
|
2012-01-27 22:49:56 -05:00
|
|
|
margin-top: @baseLineHeight / 2;
|
|
|
|
margin-bottom: @baseLineHeight / 2;
|
2012-01-05 13:01:42 -05:00
|
|
|
.btn-group {
|
2012-01-07 06:45:24 -05:00
|
|
|
display: inline-block;
|
2012-01-27 19:40:14 -05:00
|
|
|
.ie7-inline-block();
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Float them, remove border radius, then re-add to first and last elements
|
|
|
|
.btn-group .btn {
|
|
|
|
position: relative;
|
|
|
|
float: left;
|
|
|
|
margin-left: -1px;
|
|
|
|
.border-radius(0);
|
|
|
|
}
|
2012-01-07 06:45:24 -05:00
|
|
|
// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match
|
|
|
|
.btn-group .btn:first-child {
|
|
|
|
margin-left: 0;
|
|
|
|
-webkit-border-top-left-radius: 4px;
|
|
|
|
-moz-border-radius-topleft: 4px;
|
|
|
|
border-top-left-radius: 4px;
|
|
|
|
-webkit-border-bottom-left-radius: 4px;
|
|
|
|
-moz-border-radius-bottomleft: 4px;
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
}
|
|
|
|
.btn-group .btn:last-child,
|
|
|
|
.btn-group .dropdown-toggle {
|
|
|
|
-webkit-border-top-right-radius: 4px;
|
|
|
|
-moz-border-radius-topright: 4px;
|
|
|
|
border-top-right-radius: 4px;
|
|
|
|
-webkit-border-bottom-right-radius: 4px;
|
|
|
|
-moz-border-radius-bottomright: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
}
|
|
|
|
// Reset corners for large buttons
|
|
|
|
.btn-group .btn.large:first-child {
|
|
|
|
margin-left: 0;
|
|
|
|
-webkit-border-top-left-radius: 6px;
|
|
|
|
-moz-border-radius-topleft: 6px;
|
|
|
|
border-top-left-radius: 6px;
|
|
|
|
-webkit-border-bottom-left-radius: 6px;
|
|
|
|
-moz-border-radius-bottomleft: 6px;
|
|
|
|
border-bottom-left-radius: 6px;
|
|
|
|
}
|
|
|
|
.btn-group .btn.large:last-child,
|
|
|
|
.btn-group .large.dropdown-toggle {
|
|
|
|
-webkit-border-top-right-radius: 6px;
|
|
|
|
-moz-border-radius-topright: 6px;
|
|
|
|
border-top-right-radius: 6px;
|
|
|
|
-webkit-border-bottom-right-radius: 6px;
|
|
|
|
-moz-border-radius-bottomright: 6px;
|
|
|
|
border-bottom-right-radius: 6px;
|
|
|
|
}
|
|
|
|
|
2012-01-05 13:01:42 -05:00
|
|
|
// On hover/focus/active, bring the proper btn to front
|
|
|
|
.btn-group .btn:hover,
|
|
|
|
.btn-group .btn:focus,
|
2012-01-28 00:08:04 -05:00
|
|
|
.btn-group .btn:active,
|
|
|
|
.btn-group .btn.active {
|
2012-01-05 13:01:42 -05:00
|
|
|
z-index: 2;
|
|
|
|
}
|
2012-01-07 06:45:24 -05:00
|
|
|
|
2012-01-28 14:21:39 -05:00
|
|
|
// On active and open, don't show outline
|
|
|
|
.btn-group .dropdown-toggle:active,
|
|
|
|
.btn-group.open .dropdown-toggle {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-01-07 06:45:24 -05:00
|
|
|
|
|
|
|
// Split button dropdowns
|
|
|
|
// ----------------------
|
|
|
|
|
|
|
|
// Give the line between buttons some depth
|
|
|
|
.btn-group .dropdown-toggle {
|
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 8px;
|
2012-01-25 23:02:32 -05:00
|
|
|
@shadow: inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
2012-01-07 06:45:24 -05:00
|
|
|
.box-shadow(@shadow);
|
2012-01-27 16:06:58 -05:00
|
|
|
*padding-top: 5px;
|
|
|
|
*padding-bottom: 5px;
|
2012-01-07 06:45:24 -05:00
|
|
|
}
|
2012-03-10 16:40:58 -05:00
|
|
|
.btn-group .btn-mini.dropdown-toggle {
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
|
|
|
.btn-group .btn-large.dropdown-toggle {
|
|
|
|
padding-left: 12px;
|
|
|
|
padding-right: 12px;
|
|
|
|
}
|
2012-01-07 06:45:24 -05:00
|
|
|
|
2012-01-27 16:06:58 -05:00
|
|
|
.btn-group.open {
|
|
|
|
// IE7's z-index only goes to the nearest positioned ancestor, which would
|
|
|
|
// make the menu appear below buttons that appeared later on the page
|
|
|
|
*z-index: @zindexDropdown;
|
|
|
|
|
|
|
|
// Reposition menu on open and round all corners
|
|
|
|
.dropdown-menu {
|
|
|
|
display: block;
|
|
|
|
margin-top: 1px;
|
|
|
|
.border-radius(5px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-toggle {
|
|
|
|
background-image: none;
|
|
|
|
@shadow: inset 0 1px 6px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
|
|
|
|
.box-shadow(@shadow);
|
|
|
|
}
|
2012-01-07 06:45:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reposition the caret
|
|
|
|
.btn .caret {
|
2012-01-27 22:49:56 -05:00
|
|
|
margin-top: 7px;
|
2012-01-07 06:45:24 -05:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
2012-01-27 22:49:56 -05:00
|
|
|
.btn:hover .caret,
|
|
|
|
.open.btn-group .caret {
|
|
|
|
.opacity(100);
|
|
|
|
}
|
2012-03-10 16:40:58 -05:00
|
|
|
// Carets in other button sizes
|
|
|
|
.btn-mini .caret {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
.btn-small .caret {
|
|
|
|
margin-top: 6px;
|
|
|
|
}
|
|
|
|
.btn-large .caret {
|
|
|
|
margin-top: 6px;
|
|
|
|
border-left: 5px solid transparent;
|
|
|
|
border-right: 5px solid transparent;
|
|
|
|
border-top: 5px solid @black;
|
|
|
|
}
|
2012-01-27 22:49:56 -05:00
|
|
|
|
2012-01-07 06:45:24 -05:00
|
|
|
|
|
|
|
// Account for other colors
|
2012-01-31 00:15:57 -05:00
|
|
|
.btn-primary,
|
2012-03-05 03:47:13 -05:00
|
|
|
.btn-warning,
|
2012-01-31 00:15:57 -05:00
|
|
|
.btn-danger,
|
|
|
|
.btn-info,
|
2012-02-09 18:31:40 -05:00
|
|
|
.btn-success,
|
2012-02-12 18:18:20 -05:00
|
|
|
.btn-inverse {
|
2012-01-07 06:45:24 -05:00
|
|
|
.caret {
|
2012-01-21 18:24:06 -05:00
|
|
|
border-top-color: @white;
|
2012-01-29 17:50:47 -05:00
|
|
|
border-bottom-color: @white;
|
2012-01-07 06:45:24 -05:00
|
|
|
.opacity(75);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|