twbs--bootstrap/scss/_button-group.scss

143 lines
3.0 KiB
SCSS
Raw Normal View History

// 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
2014-12-02 22:02:35 +00:00
2012-12-21 08:50:28 +00:00
> .btn {
position: relative;
flex: 1 1 auto;
}
2014-12-02 22:02:35 +00:00
// Bring the hover, focused, and "active" buttons to the front to overlay
// the borders properly
2020-06-04 13:59:24 +00:00
> .btn-check:checked + .btn,
> .btn-check:focus + .btn,
> .btn:hover,
> .btn:focus,
> .btn:active,
> .btn.active {
z-index: 1;
2012-12-21 08:50:28 +00:00
}
}
// Optional: Group multiple button groups together for a toolbar
.btn-toolbar {
2016-12-22 07:29:16 +00:00
display: flex;
flex-wrap: wrap;
2016-12-22 07:29:16 +00:00
justify-content: flex-start;
2016-12-27 22:36:30 +00:00
.input-group {
width: auto;
}
}
.btn-group {
@include border-radius($btn-border-radius);
// 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),
2022-03-24 17:13:11 +00:00
> .btn.dropdown-toggle-split:first-child,
> .btn-group:not(:last-child) > .btn {
@include border-end-radius(0);
}
2020-06-04 14:48:17 +00:00
// The left radius should be 0 if the button is:
// - the "third or more" child
// - the second child and the previous element isn't `.btn-check` (making it the first child visually)
// - part of a btn-group which isn't the first child
> .btn:nth-child(n + 3),
2020-06-04 14:48:17 +00:00
> :not(.btn-check) + .btn,
> .btn-group:not(:first-child) > .btn {
@include border-start-radius(0);
}
}
// Sizing
//
// Remix the default button sizing classes into new ones for easier manipulation.
2014-12-02 22:02:35 +00:00
.btn-group-sm > .btn { @extend .btn-sm; }
.btn-group-lg > .btn { @extend .btn-lg; }
2015-04-18 18:15:40 +00:00
//
// Split button dropdowns
2015-04-18 18:15:40 +00:00
//
2017-10-28 03:35:33 +00:00
.dropdown-toggle-split {
padding-right: $btn-padding-x * .75;
padding-left: $btn-padding-x * .75;
2018-03-12 16:51:00 +00:00
&::after,
.dropup &::after,
.dropend &::after {
margin-left: 0;
}
2018-03-12 16:51:00 +00:00
.dropstart &::before {
2018-03-12 16:51:00 +00:00
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 {
2014-12-02 22:02:35 +00:00
@include box-shadow(none);
}
}
2015-04-18 18:15:40 +00:00
//
// Vertical button groups
2015-04-18 18:15:40 +00:00
//
2013-08-13 16:59:38 +00:00
.btn-group-vertical {
2016-12-22 07:29:16 +00:00
flex-direction: column;
align-items: flex-start;
2016-12-27 01:18:19 +00:00
justify-content: center;
2016-12-22 07:29:16 +00:00
> .btn,
> .btn-group {
width: 100%;
}
> .btn:not(:first-child),
> .btn-group:not(:first-child) {
margin-top: -$btn-border-width;
}
2013-08-13 16:59:38 +00:00
// Reset rounded corners
> .btn:not(:last-child):not(.dropdown-toggle),
> .btn-group:not(:last-child) > .btn {
@include border-bottom-radius(0);
}
> .btn ~ .btn,
> .btn-group:not(:first-child) > .btn {
@include border-top-radius(0);
2013-08-13 16:59:38 +00:00
}
}