52dc0b9c5c
Fixes #30 Fixes #35 Fixes #36 Fixes #38 Fixes #40 Fixes #43 Fixes #44 Fixes #46 Fixes #47 Fixes #49 Fixes #51 Fixes #53
26 lines
505 B
SCSS
26 lines
505 B
SCSS
// BUTTONS GROUPS
|
|
|
|
.btn-toolbar {
|
|
padding: 0 $button-large;
|
|
}
|
|
|
|
.btn-group {
|
|
& > .btn {
|
|
@include border-radius($btn-radius);
|
|
margin:0 $button-group-margin 0 $button-group-margin!important;
|
|
}
|
|
|
|
&:not(:first-child) > .btn {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius:0;
|
|
&:before {
|
|
content: " "!important;
|
|
border-left:1px solid rgba(0,0,0,0.2);
|
|
}
|
|
}
|
|
|
|
&:not(:last-child) > .btn {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius:0;
|
|
}
|
|
}
|