| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 | // stylelint-disable selector-no-qualifying-type// Make the div behave like a button.btn-group,.btn-group-vertical {  position: relative;  display: inline-flex;  vertical-align: middle; // match .btn alignment given font-size hack above  > .btn {    position: relative;    flex: 1 1 auto;    // Bring the hover, focused, and "active" buttons to the front to overlay    // the borders properly    @include hover() {      z-index: 1;    }    &:focus,    &:active,    &.active {      z-index: 1;    }  }}// Optional: Group multiple button groups together for a toolbar.btn-toolbar {  display: flex;  flex-wrap: wrap;  justify-content: flex-start;  .input-group {    width: auto;  }}.btn-group {  // Prevent double borders when buttons are next to each other  > .btn:not(:first-child),  > .btn-group:not(:first-child) {    margin-left: -$btn-border-width;  }  // Reset rounded corners  > .btn:not(:last-child):not(.dropdown-toggle),  > .btn-group:not(:last-child) > .btn {    @include border-right-radius(0);  }  > .btn:not(:first-child),  > .btn-group:not(:first-child) > .btn {    @include border-left-radius(0);  }}// Sizing//// Remix the default button sizing classes into new ones for easier manipulation..btn-group-sm > .btn { @extend .btn-sm; }.btn-group-lg > .btn { @extend .btn-lg; }//// Split button dropdowns//.dropdown-toggle-split {  padding-right: $btn-padding-x * .75;  padding-left: $btn-padding-x * .75;  &::after,  .dropup &::after,  .dropright &::after {    margin-left: 0;  }  .dropleft &::before {    margin-right: 0;  }}.btn-sm + .dropdown-toggle-split {  padding-right: $btn-padding-x-sm * .75;  padding-left: $btn-padding-x-sm * .75;}.btn-lg + .dropdown-toggle-split {  padding-right: $btn-padding-x-lg * .75;  padding-left: $btn-padding-x-lg * .75;}// The clickable button for toggling the menu// Set the same inset shadow as the :active state.btn-group.show .dropdown-toggle {  @include box-shadow($btn-active-box-shadow);  // Show no shadow for `.btn-link` since it has no other button styles.  &.btn-link {    @include box-shadow(none);  }}//// Vertical button groups//.btn-group-vertical {  flex-direction: column;  align-items: flex-start;  justify-content: center;  > .btn,  > .btn-group {    width: 100%;  }  > .btn:not(:first-child),  > .btn-group:not(:first-child) {    margin-top: -$btn-border-width;  }  // Reset rounded corners  > .btn:not(:last-child):not(.dropdown-toggle),  > .btn-group:not(:last-child) > .btn {    @include border-bottom-radius(0);  }  > .btn:not(:first-child),  > .btn-group:not(:first-child) > .btn {    @include border-top-radius(0);  }}// Checkbox and radio options//// In order to support the browser's form validation feedback, powered by the// `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`.// This way, we ensure a DOM element is visible to position the popover from.//// See https://github.com/twbs/bootstrap/pull/12794 and// https://github.com/twbs/bootstrap/pull/14559 for more information..btn-group-toggle {  > .btn,  > .btn-group > .btn {    margin-bottom: 0; // Override default `<label>` value    input[type="radio"],    input[type="checkbox"] {      position: absolute;      clip: rect(0, 0, 0, 0);      pointer-events: none;    }  }}
 |