2016-02-06 21:28:18 +01:00
|
|
|
// scss-lint:disable QualifyingElement
|
|
|
|
|
2012-01-07 12:45:24 +01:00
|
|
|
// Make the div behave like a button
|
2013-05-10 01:26:35 +02:00
|
|
|
.btn-group,
|
|
|
|
.btn-group-vertical {
|
2012-01-07 12:45:24 +01:00
|
|
|
position: relative;
|
2017-01-04 04:22:08 +01:00
|
|
|
display: inline-flex;
|
2012-08-27 21:05:15 +02:00
|
|
|
vertical-align: middle; // match .btn alignment given font-size hack above
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2012-12-21 09:50:28 +01:00
|
|
|
> .btn {
|
2013-03-01 06:19:02 +01:00
|
|
|
position: relative;
|
2016-12-22 08:29:16 +01:00
|
|
|
flex: 0 1 auto;
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2017-06-03 09:53:50 +02:00
|
|
|
// Bring the hover, focused, and "active" buttons to the front to overlay
|
2016-12-22 08:29:16 +01:00
|
|
|
// the borders properly
|
|
|
|
@include hover {
|
|
|
|
z-index: 2;
|
|
|
|
}
|
2013-07-29 23:53:55 +02:00
|
|
|
&:focus,
|
2013-08-05 08:27:15 +02:00
|
|
|
&:active,
|
|
|
|
&.active {
|
2013-03-01 06:19:02 +01:00
|
|
|
z-index: 2;
|
|
|
|
}
|
2012-12-21 09:50:28 +01:00
|
|
|
}
|
2012-01-07 12:45:24 +01:00
|
|
|
|
2016-12-22 08:29:16 +01:00
|
|
|
// Prevent double borders when buttons are next to each other
|
2013-08-13 18:59:38 +02:00
|
|
|
.btn + .btn,
|
|
|
|
.btn + .btn-group,
|
|
|
|
.btn-group + .btn,
|
|
|
|
.btn-group + .btn-group {
|
2015-12-07 11:07:35 +01:00
|
|
|
margin-left: -$input-btn-border-width;
|
2013-08-13 18:59:38 +02:00
|
|
|
}
|
2013-05-10 01:26:35 +02:00
|
|
|
}
|
|
|
|
|
2012-01-07 12:45:24 +01:00
|
|
|
// Optional: Group multiple button groups together for a toolbar
|
2012-01-05 19:01:42 +01:00
|
|
|
.btn-toolbar {
|
2016-12-22 08:29:16 +01:00
|
|
|
display: flex;
|
2017-01-25 05:43:33 +01:00
|
|
|
flex-wrap: wrap;
|
2016-12-22 08:29:16 +01:00
|
|
|
justify-content: flex-start;
|
2016-12-27 23:36:30 +01:00
|
|
|
|
|
|
|
.input-group {
|
|
|
|
width: auto;
|
|
|
|
}
|
2012-01-05 19:01:42 +01:00
|
|
|
}
|
|
|
|
|
2013-05-10 01:26:35 +02:00
|
|
|
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
|
2012-10-01 08:11:54 +02:00
|
|
|
border-radius: 0;
|
2012-01-05 19:01:42 +01:00
|
|
|
}
|
2013-03-01 04:34:02 +01:00
|
|
|
|
2012-01-07 12:45:24 +01: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 07:37:58 +02:00
|
|
|
.btn-group > .btn:first-child {
|
2012-01-07 12:45:24 +01:00
|
|
|
margin-left: 0;
|
2014-12-02 23:02:35 +01:00
|
|
|
|
2013-05-10 01:26:35 +02:00
|
|
|
&:not(:last-child):not(.dropdown-toggle) {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include border-right-radius(0);
|
2013-05-10 01:26:35 +02:00
|
|
|
}
|
2012-01-07 12:45:24 +01:00
|
|
|
}
|
2012-04-23 19:06:35 +02:00
|
|
|
// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it
|
2013-05-10 01:26:35 +02:00
|
|
|
.btn-group > .btn:last-child:not(:first-child),
|
|
|
|
.btn-group > .dropdown-toggle:not(:first-child) {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include border-left-radius(0);
|
2012-01-07 12:45:24 +01:00
|
|
|
}
|
|
|
|
|
2013-05-04 01:16:26 +02: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;
|
|
|
|
}
|
2017-08-13 23:55:28 +02:00
|
|
|
|
2013-05-10 01:26:35 +02:00
|
|
|
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
|
2013-05-04 01:16:26 +02:00
|
|
|
border-radius: 0;
|
|
|
|
}
|
2017-08-13 23:55:28 +02:00
|
|
|
|
2014-12-03 17:44:35 +01:00
|
|
|
.btn-group > .btn-group:first-child:not(:last-child) {
|
2013-07-07 07:07:03 +02:00
|
|
|
> .btn:last-child,
|
|
|
|
> .dropdown-toggle {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include border-right-radius(0);
|
2013-07-07 07:07:03 +02:00
|
|
|
}
|
2013-05-04 01:16:26 +02:00
|
|
|
}
|
2017-08-13 23:55:28 +02:00
|
|
|
|
2014-12-03 17:44:35 +01:00
|
|
|
.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include border-left-radius(0);
|
2013-05-04 01:16:26 +02:00
|
|
|
}
|
|
|
|
|
2012-01-28 20:21:39 +01:00
|
|
|
|
2013-08-12 23:03:57 +02:00
|
|
|
// Sizing
|
|
|
|
//
|
|
|
|
// Remix the default button sizing classes into new ones for easier manipulation.
|
|
|
|
|
2014-12-02 23:02:35 +01:00
|
|
|
.btn-group-sm > .btn { @extend .btn-sm; }
|
|
|
|
.btn-group-lg > .btn { @extend .btn-lg; }
|
2013-08-12 23:03:57 +02:00
|
|
|
|
2012-01-07 12:45:24 +01:00
|
|
|
|
2015-04-18 20:15:40 +02:00
|
|
|
//
|
2012-01-07 12:45:24 +01:00
|
|
|
// Split button dropdowns
|
2015-04-18 20:15:40 +02:00
|
|
|
//
|
2012-01-07 12:45:24 +01:00
|
|
|
|
2016-05-11 20:36:09 +02:00
|
|
|
.btn + .dropdown-toggle-split {
|
2017-03-28 18:28:27 +02:00
|
|
|
padding-right: $input-btn-padding-x * .75;
|
|
|
|
padding-left: $input-btn-padding-x * .75;
|
2016-01-08 22:23:24 +01:00
|
|
|
|
2016-05-11 20:36:09 +02:00
|
|
|
&::after {
|
|
|
|
margin-left: 0;
|
2016-01-08 22:23:24 +01:00
|
|
|
}
|
2012-03-10 22:40:58 +01:00
|
|
|
}
|
2012-01-07 12:45:24 +01:00
|
|
|
|
2016-05-11 20:36:09 +02:00
|
|
|
.btn-sm + .dropdown-toggle-split {
|
2017-03-28 18:28:27 +02:00
|
|
|
padding-right: $input-btn-padding-x-sm * .75;
|
|
|
|
padding-left: $input-btn-padding-x-sm * .75;
|
2016-05-11 20:36:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.btn-lg + .dropdown-toggle-split {
|
2017-03-28 18:28:27 +02:00
|
|
|
padding-right: $input-btn-padding-x-lg * .75;
|
|
|
|
padding-left: $input-btn-padding-x-lg * .75;
|
2016-05-11 20:36:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-13 13:05:34 +01:00
|
|
|
// The clickable button for toggling the menu
|
2017-04-09 01:30:18 +02:00
|
|
|
// Set the same inset shadow as the :active state
|
|
|
|
.btn-group.show .dropdown-toggle {
|
2016-01-10 00:14:36 +01:00
|
|
|
@include box-shadow($btn-active-box-shadow);
|
2013-10-21 02:59:15 +02:00
|
|
|
|
|
|
|
// Show no shadow for `.btn-link` since it has no other button styles.
|
|
|
|
&.btn-link {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include box-shadow(none);
|
2013-10-21 02:59:15 +02:00
|
|
|
}
|
2013-01-13 13:05:34 +01:00
|
|
|
}
|
2012-01-07 12:45:24 +01:00
|
|
|
|
2012-03-23 07:09:31 +01:00
|
|
|
|
2015-04-18 20:15:40 +02:00
|
|
|
//
|
2012-06-19 23:42:46 +02:00
|
|
|
// Vertical button groups
|
2015-04-18 20:15:40 +02:00
|
|
|
//
|
2012-06-19 23:42:46 +02:00
|
|
|
|
2013-08-13 18:59:38 +02:00
|
|
|
.btn-group-vertical {
|
2016-12-22 08:29:16 +01:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
2016-12-27 02:18:19 +01:00
|
|
|
justify-content: center;
|
2016-12-22 08:29:16 +01:00
|
|
|
|
|
|
|
.btn,
|
|
|
|
.btn-group {
|
2016-12-27 23:36:55 +01:00
|
|
|
width: 100%;
|
2013-08-13 19:24:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
> .btn + .btn,
|
|
|
|
> .btn + .btn-group,
|
|
|
|
> .btn-group + .btn,
|
|
|
|
> .btn-group + .btn-group {
|
2015-12-07 11:07:35 +01:00
|
|
|
margin-top: -$input-btn-border-width;
|
2013-08-13 18:59:38 +02:00
|
|
|
margin-left: 0;
|
2013-05-10 01:26:35 +02:00
|
|
|
}
|
2013-08-13 18:59:38 +02:00
|
|
|
|
2017-08-13 23:55:28 +02:00
|
|
|
> .btn {
|
|
|
|
&:not(:first-child):not(:last-child) {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
2013-07-07 07:07:03 +02:00
|
|
|
}
|
2017-08-13 23:55:28 +02:00
|
|
|
|
2013-08-05 02:29:01 +02:00
|
|
|
&:first-child:not(:last-child) {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include border-bottom-radius(0);
|
2013-07-07 07:07:03 +02:00
|
|
|
}
|
2017-08-13 23:55:28 +02:00
|
|
|
|
2013-08-05 02:29:01 +02:00
|
|
|
&:last-child:not(:first-child) {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include border-top-radius(0);
|
2013-07-07 07:07:03 +02:00
|
|
|
}
|
2017-08-13 23:55:28 +02:00
|
|
|
|
|
|
|
> .btn-group:not(:first-child):not(:last-child) > .btn {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .btn-group:first-child:not(:last-child) {
|
|
|
|
> .btn:last-child,
|
|
|
|
> .dropdown-toggle {
|
|
|
|
@include border-bottom-radius(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .btn-group:last-child:not(:first-child) > .btn:first-child {
|
|
|
|
@include border-top-radius(0);
|
2013-08-13 18:59:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-05 09:30:03 +01:00
|
|
|
|
2013-03-16 20:34:07 +01:00
|
|
|
// Checkbox and radio options
|
2014-03-07 08:50:55 +01:00
|
|
|
//
|
|
|
|
// In order to support the browser's form validation feedback, powered by the
|
2014-09-07 22:45:54 +02:00
|
|
|
// `required` attribute, we have to "hide" the inputs via `clip`. We cannot use
|
|
|
|
// `display: none;` or `visibility: hidden;` as that also hides the popover.
|
|
|
|
// Simply visually hiding the inputs via `opacity` would leave them clickable in
|
|
|
|
// certain cases which is prevented by using `clip` and `pointer-events`.
|
2014-03-07 08:50:55 +01:00
|
|
|
// This way, we ensure a DOM element is visible to position the popover from.
|
|
|
|
//
|
2014-09-07 22:45:54 +02:00
|
|
|
// See https://github.com/twbs/bootstrap/pull/12794 and
|
|
|
|
// https://github.com/twbs/bootstrap/pull/14559 for more information.
|
2014-03-07 08:50:55 +01:00
|
|
|
|
2014-07-07 01:48:41 +02:00
|
|
|
[data-toggle="buttons"] {
|
|
|
|
> .btn,
|
|
|
|
> .btn-group > .btn {
|
|
|
|
input[type="radio"],
|
|
|
|
input[type="checkbox"] {
|
|
|
|
position: absolute;
|
2014-09-07 22:45:54 +02:00
|
|
|
clip: rect(0,0,0,0);
|
|
|
|
pointer-events: none;
|
2014-07-07 01:48:41 +02:00
|
|
|
}
|
|
|
|
}
|
2013-03-16 20:34:07 +01:00
|
|
|
}
|