2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Button groups
|
|
|
|
// --------------------------------------------------
|
2012-01-05 13:01:42 -05:00
|
|
|
|
2012-01-07 06:45:24 -05:00
|
|
|
|
|
|
|
// Make the div behave like a button
|
|
|
|
.btn-group {
|
|
|
|
position: relative;
|
2012-09-12 19:37:41 -04:00
|
|
|
display: inline-block;
|
2012-06-25 18:46:46 -04:00
|
|
|
font-size: 0; // remove as part 1 of font-size inline-block hack
|
2012-08-27 15:05:15 -04:00
|
|
|
vertical-align: middle; // match .btn alignment given font-size hack above
|
2012-06-25 18:46:46 -04:00
|
|
|
white-space: nowrap; // prevent buttons from wrapping when in tight spaces (e.g., the table on the tests page)
|
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-08-18 19:50:26 -04:00
|
|
|
font-size: 0; // Hack to remove whitespace that results from using inline-block
|
2012-11-30 17:45:25 -05:00
|
|
|
margin-top: @line-height-base / 2;
|
|
|
|
margin-bottom: @line-height-base / 2;
|
2012-11-28 04:51:04 -05:00
|
|
|
> .btn + .btn,
|
|
|
|
> .btn-group + .btn,
|
|
|
|
> .btn + .btn-group {
|
2012-08-18 19:50:26 -04:00
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Float them, remove border radius, then re-add to first and last elements
|
2012-04-03 01:37:58 -04:00
|
|
|
.btn-group > .btn {
|
2012-01-05 13:01:42 -05:00
|
|
|
position: relative;
|
2012-10-01 02:11:54 -04:00
|
|
|
border-radius: 0;
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
2012-08-19 20:07:41 -04:00
|
|
|
.btn-group > .btn + .btn {
|
|
|
|
margin-left: -1px;
|
|
|
|
}
|
2012-06-25 23:57:04 -04:00
|
|
|
.btn-group > .btn,
|
2012-11-28 05:10:23 -05:00
|
|
|
.btn-group > .dropdown-menu,
|
|
|
|
.btn-group > .popover {
|
2012-11-30 17:45:25 -05:00
|
|
|
font-size: @font-size-base; // redeclare as part 2 of font-size inline-block hack
|
2012-06-25 23:57:04 -04:00
|
|
|
}
|
2012-06-25 18:46:46 -04:00
|
|
|
|
|
|
|
// Reset fonts for other sizes
|
2012-07-30 15:52:44 -04:00
|
|
|
.btn-group > .btn-mini {
|
2012-11-30 17:45:25 -05:00
|
|
|
font-size: @font-size-mini;
|
2012-07-30 15:52:44 -04:00
|
|
|
}
|
2012-06-25 18:46:46 -04:00
|
|
|
.btn-group > .btn-small {
|
2012-11-30 17:45:25 -05:00
|
|
|
font-size: @font-size-small;
|
2012-06-25 18:46:46 -04:00
|
|
|
}
|
|
|
|
.btn-group > .btn-large {
|
2012-11-30 17:45:25 -05:00
|
|
|
font-size: @font-size-large;
|
2012-06-25 18:46:46 -04:00
|
|
|
}
|
|
|
|
|
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
|
2012-04-03 01:37:58 -04:00
|
|
|
.btn-group > .btn:first-child {
|
2012-01-07 06:45:24 -05:00
|
|
|
margin-left: 0;
|
2012-12-01 17:25:28 -05:00
|
|
|
border-top-left-radius: @border-radius-base;
|
|
|
|
border-bottom-left-radius: @border-radius-base;
|
2012-01-07 06:45:24 -05:00
|
|
|
}
|
2012-04-23 13:06:35 -04:00
|
|
|
// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it
|
2012-04-03 01:37:58 -04:00
|
|
|
.btn-group > .btn:last-child,
|
|
|
|
.btn-group > .dropdown-toggle {
|
2012-12-01 17:25:28 -05:00
|
|
|
border-top-right-radius: @border-radius-base;
|
|
|
|
border-bottom-right-radius: @border-radius-base;
|
2012-01-07 06:45:24 -05:00
|
|
|
}
|
|
|
|
// Reset corners for large buttons
|
2012-04-03 01:37:58 -04:00
|
|
|
.btn-group > .btn.large:first-child {
|
2012-01-07 06:45:24 -05:00
|
|
|
margin-left: 0;
|
2012-12-01 17:25:28 -05:00
|
|
|
border-top-left-radius: @border-radius-large;
|
|
|
|
border-bottom-left-radius: @border-radius-large;
|
2012-01-07 06:45:24 -05:00
|
|
|
}
|
2012-04-03 01:37:58 -04:00
|
|
|
.btn-group > .btn.large:last-child,
|
|
|
|
.btn-group > .large.dropdown-toggle {
|
2012-12-01 17:25:28 -05:00
|
|
|
border-top-right-radius: @border-radius-large;
|
|
|
|
border-bottom-right-radius: @border-radius-large;
|
2012-01-07 06:45:24 -05:00
|
|
|
}
|
|
|
|
|
2012-01-05 13:01:42 -05:00
|
|
|
// On hover/focus/active, bring the proper btn to front
|
2012-04-03 01:37:58 -04:00
|
|
|
.btn-group > .btn:hover,
|
|
|
|
.btn-group > .btn:focus,
|
|
|
|
.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
|
2012-07-30 15:52:44 -04:00
|
|
|
.btn-group > .btn + .dropdown-toggle {
|
2012-07-09 03:31:54 -04:00
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 8px;
|
2012-09-12 18:48:56 -04:00
|
|
|
.box-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
|
|
|
}
|
2012-07-30 15:52:44 -04:00
|
|
|
.btn-group > .btn-mini + .dropdown-toggle {
|
2012-07-09 03:31:54 -04:00
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 5px;
|
2012-03-10 16:40:58 -05:00
|
|
|
}
|
2012-07-30 15:52:44 -04:00
|
|
|
.btn-group > .btn-large + .dropdown-toggle {
|
2012-07-09 03:31:54 -04:00
|
|
|
padding-left: 12px;
|
|
|
|
padding-right: 12px;
|
2012-03-10 16:40:58 -05:00
|
|
|
}
|
2012-01-07 06:45:24 -05:00
|
|
|
|
2012-01-27 16:06:58 -05:00
|
|
|
.btn-group.open {
|
|
|
|
|
2012-03-23 02:09:31 -04:00
|
|
|
// The clickable button for toggling the menu
|
|
|
|
// Remove the gradient and set the same inset shadow as the :active state
|
2012-01-27 16:06:58 -05:00
|
|
|
.dropdown-toggle {
|
|
|
|
background-image: none;
|
2012-09-12 18:48:56 -04:00
|
|
|
.box-shadow(~"inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05)");
|
2012-01-27 16:06:58 -05:00
|
|
|
}
|
2012-03-23 02:09:31 -04:00
|
|
|
|
|
|
|
// Keep the hover's background when dropdown is open
|
|
|
|
.btn.dropdown-toggle {
|
2012-11-30 18:05:23 -05:00
|
|
|
background-color: @btn-background-highlight;
|
2012-03-23 02:09:31 -04:00
|
|
|
}
|
|
|
|
.btn-primary.dropdown-toggle {
|
2012-11-30 18:05:23 -05:00
|
|
|
background-color: @btn-backround-primary-highlight;
|
2012-03-23 02:09:31 -04:00
|
|
|
}
|
|
|
|
.btn-warning.dropdown-toggle {
|
2012-11-30 18:05:23 -05:00
|
|
|
background-color: @btn-backround-warning-highlight;
|
2012-03-23 02:09:31 -04:00
|
|
|
}
|
|
|
|
.btn-danger.dropdown-toggle {
|
2012-11-30 18:05:23 -05:00
|
|
|
background-color: @btn-backround-danger-highlight;
|
2012-03-23 02:09:31 -04:00
|
|
|
}
|
|
|
|
.btn-success.dropdown-toggle {
|
2012-11-30 18:05:23 -05:00
|
|
|
background-color: @btn-backround-success-highlight;
|
2012-03-23 02:09:31 -04:00
|
|
|
}
|
|
|
|
.btn-info.dropdown-toggle {
|
2012-11-30 18:05:23 -05:00
|
|
|
background-color: @btn-backround-info-highlight;
|
2012-03-23 02:09:31 -04:00
|
|
|
}
|
|
|
|
.btn-inverse.dropdown-toggle {
|
2012-11-30 18:05:23 -05:00
|
|
|
background-color: @btn-backround-inverse-highlight;
|
2012-03-23 02:09:31 -04:00
|
|
|
}
|
2012-01-07 06:45:24 -05:00
|
|
|
}
|
|
|
|
|
2012-03-23 02:09:31 -04:00
|
|
|
|
2012-01-07 06:45:24 -05:00
|
|
|
// Reposition the caret
|
|
|
|
.btn .caret {
|
2012-07-30 15:52:44 -04:00
|
|
|
margin-top: 8px;
|
2012-01-07 06:45:24 -05:00
|
|
|
margin-left: 0;
|
|
|
|
}
|
2012-03-10 16:40:58 -05:00
|
|
|
// Carets in other button sizes
|
2012-07-30 15:52:44 -04:00
|
|
|
.btn-mini .caret,
|
|
|
|
.btn-small .caret,
|
|
|
|
.btn-large .caret {
|
2012-07-09 03:31:54 -04:00
|
|
|
margin-top: 6px;
|
2012-03-10 16:40:58 -05:00
|
|
|
}
|
|
|
|
.btn-large .caret {
|
2012-03-23 03:37:15 -04:00
|
|
|
border-left-width: 5px;
|
|
|
|
border-right-width: 5px;
|
|
|
|
border-top-width: 5px;
|
|
|
|
}
|
|
|
|
// Upside down carets for .dropup
|
|
|
|
.dropup .btn-large .caret {
|
2012-09-18 15:00:57 -04:00
|
|
|
border-bottom-width: 5px;
|
2012-03-10 16:40:58 -05:00
|
|
|
}
|
2012-01-27 22:49:56 -05:00
|
|
|
|
2012-01-07 06:45:24 -05:00
|
|
|
|
2012-03-23 03:37:15 -04: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-11-30 18:05:23 -05:00
|
|
|
border-top-color: #fff;
|
|
|
|
border-bottom-color: #fff;
|
2012-01-07 06:45:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-19 17:42:46 -04:00
|
|
|
|
|
|
|
|
|
|
|
// Vertical button groups
|
|
|
|
// ----------------------
|
|
|
|
|
|
|
|
.btn-group-vertical {
|
2012-09-26 01:07:53 -04:00
|
|
|
display: inline-block; // Make buttons only take up the width they need
|
2012-06-19 17:42:46 -04:00
|
|
|
}
|
2012-11-28 05:21:34 -05:00
|
|
|
.btn-group-vertical > .btn {
|
2012-06-19 17:42:46 -04:00
|
|
|
display: block;
|
|
|
|
float: none;
|
2012-10-01 02:11:54 -04:00
|
|
|
border-radius: 0;
|
2012-11-28 05:21:34 -05:00
|
|
|
max-width: 100%;
|
2012-06-19 17:42:46 -04:00
|
|
|
}
|
2012-11-28 05:21:34 -05:00
|
|
|
.btn-group-vertical > .btn + .btn {
|
2012-08-19 20:07:41 -04:00
|
|
|
margin-left: 0;
|
2012-06-19 17:42:46 -04:00
|
|
|
margin-top: -1px;
|
|
|
|
}
|
|
|
|
.btn-group-vertical .btn:first-child {
|
2012-11-30 17:45:25 -05:00
|
|
|
border-radius: @border-radius-base @border-radius-base 0 0;
|
2012-06-19 17:42:46 -04:00
|
|
|
}
|
|
|
|
.btn-group-vertical .btn:last-child {
|
2012-11-30 17:45:25 -05:00
|
|
|
border-radius: 0 0 @border-radius-base @border-radius-base;
|
2012-06-19 17:42:46 -04:00
|
|
|
}
|
|
|
|
.btn-group-vertical .btn-large:first-child {
|
2012-11-30 17:45:25 -05:00
|
|
|
border-radius: @border-radius-large @border-radius-large 0 0;
|
2012-06-19 17:42:46 -04:00
|
|
|
}
|
|
|
|
.btn-group-vertical .btn-large:last-child {
|
2012-11-30 17:45:25 -05:00
|
|
|
border-radius: 0 0 @border-radius-large @border-radius-large;
|
2012-06-19 17:42:46 -04:00
|
|
|
}
|