mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-01 22:10:27 +00:00
33 lines
779 B
SCSS
33 lines
779 B
SCSS
@import "../core/index-noreset.scss";
|
|
@import "scss/mixin";
|
|
@import "scss/variable";
|
|
|
|
#{$split-btn-prefix} {
|
|
display: inline-block;
|
|
position: relative;
|
|
|
|
&-trigger {
|
|
.#{$css-prefix}icon {
|
|
transition: transform $motion-duration-immediately $motion-linear;
|
|
}
|
|
|
|
&.#{$css-prefix}expand .#{$css-prefix}icon {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
&.#{$css-prefix}btn-normal:not(:disabled):not(.disabled) .#{$css-prefix}icon {
|
|
color: $split-btn-trigger-normal-icon-color;
|
|
}
|
|
|
|
&.#{$css-prefix}small {
|
|
padding-left: $s-1;
|
|
padding-right: $s-1;
|
|
}
|
|
|
|
&.#{$css-prefix}medium {
|
|
padding-left: $s-2;
|
|
padding-right: $s-2;
|
|
}
|
|
}
|
|
}
|