| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- @use 'sass:map';
-
- @use 'common/var' as *;
- @use 'mixins/mixins' as *;
- @use 'mixins/utils' as *;
-
- @include b(button-group) {
- & > .#{$namespace}-button {
- & + .#{$namespace}-button {
- margin-left: 0;
- }
-
- &:first-child:last-child {
- border-top-right-radius: map.get($button-border-radius, 'default');
- border-bottom-right-radius: map.get($button-border-radius, 'default');
- border-top-left-radius: map.get($button-border-radius, 'default');
- border-bottom-left-radius: map.get($button-border-radius, 'default');
-
- &.is-round {
- border-radius: getCssVar('border-radius', 'round');
- }
-
- &.is-circle {
- border-radius: 50%;
- }
- }
-
- &:not(:first-child):not(:last-child) {
- border-radius: 0;
- }
-
- &:hover,
- &:focus,
- &:active {
- z-index: 1;
- }
-
- @include when(active) {
- z-index: 1;
- }
- }
-
- @include m('horizontal') {
- display: inline-block;
- vertical-align: middle;
- @include utils-clearfix;
-
- & > .#{$namespace}-button {
- float: left;
- position: relative;
-
- &:first-child {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- &:last-child {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
-
- &:not(:last-child) {
- margin-right: -1px;
- }
- }
-
- @each $type in (primary, success, warning, danger, info) {
- .#{$namespace}-button--#{$type} {
- &:first-child {
- border-right-color: getCssVar('button', 'divide-border-color');
- }
- &:last-child {
- border-left-color: getCssVar('button', 'divide-border-color');
- }
- &:not(:first-child):not(:last-child) {
- border-left-color: getCssVar('button', 'divide-border-color');
- border-right-color: getCssVar('button', 'divide-border-color');
- }
- }
- }
-
- & > .#{$namespace}-dropdown {
- & > .#{$namespace}-button {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- border-left-color: getCssVar('button', 'divide-border-color');
- }
- }
- }
-
- @include m('vertical') {
- display: inline-flex;
- flex-direction: column;
- align-items: stretch;
-
- & > .#{$namespace}-button {
- margin-top: -1px;
-
- &:first-child {
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- }
- &:last-child {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- }
-
- & > .#{$namespace}-dropdown {
- margin-top: -1px;
-
- & > .#{$namespace}-button {
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- border-left-color: getCssVar('button', 'divide-border-color');
- }
- }
-
- @each $type in (primary, success, warning, danger, info) {
- .#{$namespace}-button--#{$type} {
- &:first-child {
- border-bottom-color: getCssVar('button', 'divide-border-color');
- }
- &:last-child {
- border-top-color: getCssVar('button', 'divide-border-color');
- }
- &:not(:first-child):not(:last-child) {
- border-top-color: getCssVar('button', 'divide-border-color');
- border-bottom-color: getCssVar('button', 'divide-border-color');
- }
- }
- }
- }
- }
|