|
|
|
@import "../../style/themes/default";
|
|
|
|
@import "../../style/mixins/index";
|
|
|
|
|
|
|
|
@collapse-prefix-cls: ~"@{ant-prefix}-collapse";
|
|
|
|
|
|
|
|
.collapse-close() {
|
|
|
|
.iconfont-size-under-12px(9px, 0);
|
|
|
|
}
|
|
|
|
.collapse-open() {
|
|
|
|
.iconfont-size-under-12px(9px, 90deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{collapse-prefix-cls} {
|
|
|
|
background-color: @background-color-base;
|
|
|
|
border-radius: @border-radius-base;
|
|
|
|
border: @border-width-base @border-style-base @border-color-base;
|
|
|
|
border-bottom: 0;
|
|
|
|
|
|
|
|
& > &-item {
|
|
|
|
border-bottom: @border-width-base @border-style-base @border-color-base;
|
|
|
|
> .@{collapse-prefix-cls}-header {
|
|
|
|
height: 38px;
|
|
|
|
line-height: 38px;
|
|
|
|
padding-left: 32px;
|
|
|
|
color: @heading-color;
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
transition: all .3s;
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background-color: #eee!important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.arrow {
|
|
|
|
.collapse-close();
|
|
|
|
.iconfont-mixin();
|
|
|
|
position: absolute;
|
|
|
|
color: @text-color-secondary;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 40px;
|
|
|
|
vertical-align: middle;
|
|
|
|
transition: transform 0.24s;
|
|
|
|
top: 0;
|
|
|
|
left: 16px;
|
|
|
|
/* stylelint-disable declaration-block-no-duplicate-properties */
|
|
|
|
top: ~"16px \9";
|
|
|
|
left: ~"0 \9";
|
|
|
|
/* stylelint-enable declaration-block-no-duplicate-properties */
|
|
|
|
&:before {
|
|
|
|
content: "\E61F";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-anim-active {
|
|
|
|
transition: height .2s @ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-content {
|
|
|
|
overflow: hidden;
|
|
|
|
color: @text-color;
|
|
|
|
padding: 0 16px;
|
|
|
|
background-color: @component-background;
|
|
|
|
|
|
|
|
& > &-box {
|
|
|
|
padding-top: 16px;
|
|
|
|
padding-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-inactive {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-item:last-child {
|
|
|
|
> .@{collapse-prefix-cls}-content {
|
|
|
|
border-radius: 0 0 @border-radius-base @border-radius-base;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& > &-item > &-header[aria-expanded="true"] {
|
|
|
|
.arrow {
|
|
|
|
.collapse-open();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-borderless {
|
|
|
|
background-color: @component-background;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-borderless > &-item-active {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-borderless > &-item > &-content {
|
|
|
|
background-color: transparent;
|
|
|
|
border-top: @border-width-base @border-style-base @border-color-base;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-borderless > &-item > &-header {
|
|
|
|
transition: all .3s;
|
|
|
|
&:hover {
|
|
|
|
background-color: @background-color-base;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|