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
|
2013-05-09 19:26:35 -04:00
|
|
|
.btn-group,
|
|
|
|
.btn-group-vertical {
|
2012-01-07 06:45:24 -05:00
|
|
|
position: relative;
|
2012-09-12 19:37:41 -04:00
|
|
|
display: inline-block;
|
2012-08-27 15:05:15 -04:00
|
|
|
vertical-align: middle; // match .btn alignment given font-size hack above
|
2012-12-21 03:50:28 -05:00
|
|
|
> .btn {
|
2013-03-01 00:19:02 -05:00
|
|
|
position: relative;
|
2012-12-21 03:50:28 -05:00
|
|
|
float: left;
|
2013-03-01 00:19:02 -05:00
|
|
|
// Bring the "active" button to the front
|
|
|
|
&:hover,
|
2013-07-29 17:53:55 -04:00
|
|
|
&:focus,
|
2013-08-05 02:27:15 -04:00
|
|
|
&:active,
|
|
|
|
&.active {
|
2013-03-01 00:19:02 -05:00
|
|
|
z-index: 2;
|
|
|
|
}
|
2013-08-05 19:16:58 -04:00
|
|
|
&:focus {
|
|
|
|
// Remove focus outline when dropdown JS adds it after closing the menu
|
2014-03-10 02:55:29 -04:00
|
|
|
outline: 0;
|
2013-08-05 19:16:58 -04:00
|
|
|
}
|
2012-12-21 03:50:28 -05:00
|
|
|
}
|
2012-01-07 06:45:24 -05:00
|
|
|
}
|
|
|
|
|
2013-05-09 19:26:35 -04:00
|
|
|
// Prevent double borders when buttons are next to each other
|
2013-08-13 12:59:38 -04:00
|
|
|
.btn-group {
|
|
|
|
.btn + .btn,
|
|
|
|
.btn + .btn-group,
|
|
|
|
.btn-group + .btn,
|
|
|
|
.btn-group + .btn-group {
|
|
|
|
margin-left: -1px;
|
|
|
|
}
|
2013-05-09 19:26:35 -04:00
|
|
|
}
|
|
|
|
|
2012-01-07 06:45:24 -05:00
|
|
|
// Optional: Group multiple button groups together for a toolbar
|
2012-01-05 13:01:42 -05:00
|
|
|
.btn-toolbar {
|
2013-12-14 19:03:21 -05:00
|
|
|
margin-left: -5px; // Offset the first child's margin
|
Switch to `&:extend(.clearfix all)` for clearfix mixin
Original discussion:
https://github.com/less/less.js/issues/1437#issuecomment-21383639.
Since we’re switching to `grunt-contrib-less`, we can take advantage of
newer LESS features than what RECESS supported. Included in that is the
ability to `:extend`, and not only that, but `:extend(.mixin-name
all)`. By doing so, we remove duplicate CSS for all our elements that
were being clearfix-ed.
Fixes #8947, #8968, #8991, #9257, #9268, #9291, #9430, #9604, #9686,
#9929, #10731, #10793, #11305, #11498, #11533, #11570, #11604, #11652.
(dem issues, tho)
2013-12-09 02:18:28 -05:00
|
|
|
&:extend(.clearfix all);
|
2013-02-05 03:49:54 -05:00
|
|
|
|
2013-12-14 19:03:21 -05:00
|
|
|
.btn-group,
|
|
|
|
.input-group {
|
2012-12-21 03:50:28 -05:00
|
|
|
float: left;
|
|
|
|
}
|
2013-07-21 08:03:59 -04:00
|
|
|
> .btn,
|
2013-12-14 19:03:21 -05:00
|
|
|
> .btn-group,
|
|
|
|
> .input-group {
|
|
|
|
margin-left: 5px;
|
2012-08-18 19:50:26 -04:00
|
|
|
}
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
|
|
|
|
2013-05-09 19:26:35 -04:00
|
|
|
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
2012-10-01 02:11:54 -04:00
|
|
|
border-radius: 0;
|
2012-01-05 13:01:42 -05:00
|
|
|
}
|
2013-02-28 22:34:02 -05: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;
|
2013-05-09 19:26:35 -04:00
|
|
|
&:not(:last-child):not(.dropdown-toggle) {
|
|
|
|
.border-right-radius(0);
|
|
|
|
}
|
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
|
2013-05-09 19:26:35 -04:00
|
|
|
.btn-group > .btn:last-child:not(:first-child),
|
|
|
|
.btn-group > .dropdown-toggle:not(:first-child) {
|
|
|
|
.border-left-radius(0);
|
2012-01-07 06:45:24 -05:00
|
|
|
}
|
|
|
|
|
2013-05-03 19:16:26 -04:00
|
|
|
// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)
|
|
|
|
.btn-group > .btn-group {
|
|
|
|
float: left;
|
|
|
|
}
|
2013-05-09 19:26:35 -04:00
|
|
|
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
2013-05-03 19:16:26 -04:00
|
|
|
border-radius: 0;
|
|
|
|
}
|
2013-07-07 01:07:03 -04:00
|
|
|
.btn-group > .btn-group:first-child {
|
|
|
|
> .btn:last-child,
|
|
|
|
> .dropdown-toggle {
|
|
|
|
.border-right-radius(0);
|
|
|
|
}
|
2013-05-03 19:16:26 -04:00
|
|
|
}
|
2013-05-09 19:26:35 -04:00
|
|
|
.btn-group > .btn-group:last-child > .btn:first-child {
|
|
|
|
.border-left-radius(0);
|
2013-05-03 19:16:26 -04: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-12 17:03:57 -04:00
|
|
|
// Sizing
|
|
|
|
//
|
|
|
|
// Remix the default button sizing classes into new ones for easier manipulation.
|
|
|
|
|
2014-02-06 13:51:49 -05:00
|
|
|
.btn-group-xs > .btn { &:extend(.btn-xs); }
|
|
|
|
.btn-group-sm > .btn { &:extend(.btn-sm); }
|
|
|
|
.btn-group-lg > .btn { &:extend(.btn-lg); }
|
2013-08-12 17:03:57 -04:00
|
|
|
|
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-01-07 06:45:24 -05:00
|
|
|
}
|
2013-08-04 00:39:57 -04:00
|
|
|
.btn-group > .btn-lg + .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
|
|
|
|
2013-01-13 07:05:34 -05:00
|
|
|
// The clickable button for toggling the menu
|
|
|
|
// Remove the gradient and set the same inset shadow as the :active state
|
|
|
|
.btn-group.open .dropdown-toggle {
|
2014-07-09 00:19:14 -04:00
|
|
|
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
|
2013-10-20 20:59:15 -04:00
|
|
|
|
|
|
|
// Show no shadow for `.btn-link` since it has no other button styles.
|
|
|
|
&.btn-link {
|
2014-07-09 00:19:14 -04:00
|
|
|
.box-shadow(none);
|
2013-10-20 20:59:15 -04:00
|
|
|
}
|
2013-01-13 07:05:34 -05: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 {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2012-03-10 16:40:58 -05:00
|
|
|
// Carets in other button sizes
|
2013-08-04 00:39:57 -04:00
|
|
|
.btn-lg .caret {
|
2013-08-18 13:08:18 -04:00
|
|
|
border-width: @caret-width-large @caret-width-large 0;
|
2013-08-18 08:13:48 -04:00
|
|
|
border-bottom-width: 0;
|
2012-03-23 03:37:15 -04:00
|
|
|
}
|
|
|
|
// Upside down carets for .dropup
|
2013-08-04 00:39:57 -04:00
|
|
|
.dropup .btn-lg .caret {
|
2013-08-18 13:08:18 -04:00
|
|
|
border-width: 0 @caret-width-large @caret-width-large;
|
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-06-19 17:42:46 -04:00
|
|
|
// Vertical button groups
|
|
|
|
// ----------------------
|
|
|
|
|
2013-08-13 12:59:38 -04:00
|
|
|
.btn-group-vertical {
|
2013-08-13 13:24:18 -04:00
|
|
|
> .btn,
|
2013-11-15 11:17:40 -05:00
|
|
|
> .btn-group,
|
|
|
|
> .btn-group > .btn {
|
2013-08-13 13:24:18 -04:00
|
|
|
display: block;
|
|
|
|
float: none;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear floats so dropdown menus can be properly placed
|
|
|
|
> .btn-group {
|
Switch to `&:extend(.clearfix all)` for clearfix mixin
Original discussion:
https://github.com/less/less.js/issues/1437#issuecomment-21383639.
Since we’re switching to `grunt-contrib-less`, we can take advantage of
newer LESS features than what RECESS supported. Included in that is the
ability to `:extend`, and not only that, but `:extend(.mixin-name
all)`. By doing so, we remove duplicate CSS for all our elements that
were being clearfix-ed.
Fixes #8947, #8968, #8991, #9257, #9268, #9291, #9430, #9604, #9686,
#9929, #10731, #10793, #11305, #11498, #11533, #11570, #11604, #11652.
(dem issues, tho)
2013-12-09 02:18:28 -05:00
|
|
|
&:extend(.clearfix all);
|
2013-08-13 13:24:18 -04:00
|
|
|
> .btn {
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .btn + .btn,
|
|
|
|
> .btn + .btn-group,
|
|
|
|
> .btn-group + .btn,
|
|
|
|
> .btn-group + .btn-group {
|
2013-05-09 19:26:35 -04:00
|
|
|
margin-top: -1px;
|
2013-08-13 12:59:38 -04:00
|
|
|
margin-left: 0;
|
2013-05-09 19:26:35 -04:00
|
|
|
}
|
|
|
|
}
|
2013-08-13 12:59:38 -04:00
|
|
|
|
|
|
|
.btn-group-vertical > .btn {
|
2013-07-07 01:07:03 -04:00
|
|
|
&:not(:first-child):not(:last-child) {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
2013-08-04 20:29:01 -04:00
|
|
|
&:first-child:not(:last-child) {
|
2013-08-13 12:59:38 -04:00
|
|
|
border-top-right-radius: @border-radius-base;
|
2013-07-07 01:07:03 -04:00
|
|
|
.border-bottom-radius(0);
|
|
|
|
}
|
2013-08-04 20:29:01 -04:00
|
|
|
&:last-child:not(:first-child) {
|
2013-08-13 12:59:38 -04:00
|
|
|
border-bottom-left-radius: @border-radius-base;
|
2013-07-07 01:07:03 -04:00
|
|
|
.border-top-radius(0);
|
|
|
|
}
|
2012-06-19 17:42:46 -04:00
|
|
|
}
|
2013-08-13 12:59:38 -04:00
|
|
|
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
2013-11-15 11:48:24 -05:00
|
|
|
.btn-group-vertical > .btn-group:first-child:not(:last-child) {
|
2013-08-13 12:59:38 -04:00
|
|
|
> .btn:last-child,
|
|
|
|
> .dropdown-toggle {
|
|
|
|
.border-bottom-radius(0);
|
|
|
|
}
|
|
|
|
}
|
2013-11-15 11:48:24 -05:00
|
|
|
.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
2013-08-13 12:59:38 -04:00
|
|
|
.border-top-radius(0);
|
|
|
|
}
|
|
|
|
|
2013-02-05 03:30:03 -05:00
|
|
|
|
|
|
|
|
|
|
|
// Justified button groups
|
|
|
|
// ----------------------
|
|
|
|
|
|
|
|
.btn-group-justified {
|
|
|
|
display: table;
|
|
|
|
width: 100%;
|
2013-07-31 23:26:12 -04:00
|
|
|
table-layout: fixed;
|
2013-08-13 14:28:18 -04:00
|
|
|
border-collapse: separate;
|
2013-11-19 04:24:49 -05:00
|
|
|
> .btn,
|
|
|
|
> .btn-group {
|
2013-02-05 03:30:03 -05:00
|
|
|
float: none;
|
|
|
|
display: table-cell;
|
|
|
|
width: 1%;
|
|
|
|
}
|
2013-11-19 04:24:49 -05:00
|
|
|
> .btn-group .btn {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2014-04-17 03:21:09 -04:00
|
|
|
|
|
|
|
> .btn-group .dropdown-menu {
|
|
|
|
left: auto;
|
|
|
|
}
|
2013-02-05 03:30:03 -05:00
|
|
|
}
|
2013-03-16 15:34:07 -04:00
|
|
|
|
|
|
|
|
|
|
|
// Checkbox and radio options
|
2014-03-07 02:50:55 -05:00
|
|
|
//
|
|
|
|
// In order to support the browser's form validation feedback, powered by the
|
|
|
|
// `required` attribute, we have to "hide" the inputs via `opacity`. We cannot
|
|
|
|
// use `display: none;` or `visibility: hidden;` as that also hides the popover.
|
|
|
|
// This way, we ensure a DOM element is visible to position the popover from.
|
|
|
|
//
|
|
|
|
// See https://github.com/twbs/bootstrap/pull/12794 for more.
|
|
|
|
|
2014-07-06 19:48:41 -04:00
|
|
|
[data-toggle="buttons"] {
|
|
|
|
> .btn,
|
|
|
|
> .btn-group > .btn {
|
|
|
|
input[type="radio"],
|
|
|
|
input[type="checkbox"] {
|
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
2014-07-08 22:22:19 -04:00
|
|
|
opacity: 0;
|
2014-07-06 19:48:41 -04:00
|
|
|
}
|
|
|
|
}
|
2013-03-16 15:34:07 -04:00
|
|
|
}
|