2016-04-27 20:44:36 +08:00
|
|
|
@import "../../style/themes/default";
|
|
|
|
@import "../../style/mixins/index";
|
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
@collapse-prefix-cls: ~"@{ant-prefix}-collapse";
|
2017-04-29 02:05:56 +08:00
|
|
|
|
2017-09-27 22:32:49 +08:00
|
|
|
@collapse-header-bg: @background-color-light;
|
|
|
|
@collapse-active-bg: @background-color-base;
|
2017-04-26 22:16:04 +08:00
|
|
|
|
2015-11-26 19:32:55 +08:00
|
|
|
.collapse-close() {
|
2017-09-27 22:32:49 +08:00
|
|
|
transform: rotate(0);
|
2015-11-26 19:32:55 +08:00
|
|
|
}
|
|
|
|
.collapse-open() {
|
2017-09-27 22:32:49 +08:00
|
|
|
transform: rotate(90deg);
|
2015-07-11 10:17:58 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{collapse-prefix-cls} {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
2017-04-29 04:04:41 +08:00
|
|
|
background-color: @collapse-header-bg;
|
2017-02-16 15:35:52 +08:00
|
|
|
border-radius: @border-radius-base;
|
2017-01-31 16:05:10 +08:00
|
|
|
border: @border-width-base @border-style-base @border-color-base;
|
2017-01-09 17:19:26 +08:00
|
|
|
border-bottom: 0;
|
2015-07-11 10:17:58 +08:00
|
|
|
|
2015-07-14 21:09:16 +08:00
|
|
|
& > &-item {
|
2017-01-31 16:05:10 +08:00
|
|
|
border-bottom: @border-width-base @border-style-base @border-color-base;
|
2017-07-27 17:16:01 +08:00
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
&,
|
|
|
|
& > .@{collapse-prefix-cls}-header {
|
|
|
|
border-radius: 0 0 @border-radius-base @border-radius-base;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
> .@{collapse-prefix-cls}-header {
|
2017-07-14 15:43:41 +08:00
|
|
|
line-height: 22px;
|
2017-09-27 22:32:49 +08:00
|
|
|
padding: 12px 0 12px 40px;
|
2017-03-07 14:29:02 +08:00
|
|
|
color: @heading-color;
|
2015-07-24 22:07:59 +08:00
|
|
|
cursor: pointer;
|
2015-08-23 16:27:43 +08:00
|
|
|
position: relative;
|
2017-02-16 15:35:52 +08:00
|
|
|
transition: all .3s;
|
|
|
|
|
2015-08-23 16:27:43 +08:00
|
|
|
.arrow {
|
|
|
|
.iconfont-mixin();
|
2017-09-27 22:32:49 +08:00
|
|
|
.collapse-close();
|
|
|
|
font-size: @font-size-sm;
|
2015-08-23 16:27:43 +08:00
|
|
|
position: absolute;
|
2015-07-14 21:09:16 +08:00
|
|
|
display: inline-block;
|
2017-09-27 22:32:49 +08:00
|
|
|
line-height: 46px;
|
2017-09-15 09:55:00 +08:00
|
|
|
vertical-align: top;
|
2017-02-16 15:35:52 +08:00
|
|
|
transition: transform 0.24s;
|
2015-11-04 17:54:51 +08:00
|
|
|
top: 0;
|
2017-09-27 22:32:49 +08:00
|
|
|
left: @padding-md;
|
2015-08-23 16:27:43 +08:00
|
|
|
&:before {
|
2017-02-16 15:35:52 +08:00
|
|
|
content: "\E61F";
|
2015-08-23 16:27:43 +08:00
|
|
|
}
|
2015-07-14 21:09:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-24 15:29:12 +08:00
|
|
|
&-anim-active {
|
|
|
|
transition: height .2s @ease-out;
|
|
|
|
}
|
|
|
|
|
2015-07-11 10:17:58 +08:00
|
|
|
&-content {
|
|
|
|
overflow: hidden;
|
2015-07-21 15:17:42 +08:00
|
|
|
color: @text-color;
|
2017-09-27 22:32:49 +08:00
|
|
|
padding: 0 @padding-md;
|
2016-11-29 11:56:10 +08:00
|
|
|
background-color: @component-background;
|
2017-10-18 17:16:14 +08:00
|
|
|
border-top: @border-width-base @border-style-base @border-color-base;
|
2015-07-14 21:09:16 +08:00
|
|
|
|
|
|
|
& > &-box {
|
2017-09-27 22:32:49 +08:00
|
|
|
padding-top: @padding-md;
|
|
|
|
padding-bottom: @padding-md;
|
2015-07-11 10:17:58 +08:00
|
|
|
}
|
2015-08-31 16:58:27 +08:00
|
|
|
|
2016-03-30 16:27:14 +08:00
|
|
|
&-inactive {
|
|
|
|
display: none;
|
2015-08-31 16:58:27 +08:00
|
|
|
}
|
2015-07-11 10:17:58 +08:00
|
|
|
}
|
|
|
|
|
2015-07-14 21:09:16 +08:00
|
|
|
&-item:last-child {
|
2015-08-20 16:55:42 +08:00
|
|
|
> .@{collapse-prefix-cls}-content {
|
2017-02-16 15:35:52 +08:00
|
|
|
border-radius: 0 0 @border-radius-base @border-radius-base;
|
2015-07-14 21:09:16 +08:00
|
|
|
}
|
2015-07-11 10:17:58 +08:00
|
|
|
}
|
|
|
|
|
2015-11-04 17:54:51 +08:00
|
|
|
& > &-item > &-header[aria-expanded="true"] {
|
|
|
|
.arrow {
|
2015-11-26 19:32:55 +08:00
|
|
|
.collapse-open();
|
2015-07-11 10:17:58 +08:00
|
|
|
}
|
|
|
|
}
|
2016-11-06 15:06:34 +08:00
|
|
|
|
|
|
|
&-borderless {
|
2016-11-29 11:56:10 +08:00
|
|
|
background-color: @component-background;
|
2016-11-06 15:06:34 +08:00
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
2017-09-27 22:32:49 +08:00
|
|
|
&-borderless > &-item {
|
2017-10-16 19:53:46 +08:00
|
|
|
border-bottom: 1px solid @border-color-base;
|
2017-09-27 22:32:49 +08:00
|
|
|
}
|
|
|
|
|
2017-09-03 18:24:22 +08:00
|
|
|
&-borderless > &-item:last-child,
|
|
|
|
&-borderless > &-item:last-child &-header {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2017-01-09 17:19:26 +08:00
|
|
|
&-borderless > &-item > &-content {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
2017-09-27 22:32:49 +08:00
|
|
|
&-borderless > &-item > &-content > &-content-box {
|
|
|
|
padding-top: 4px;
|
2016-11-06 15:06:34 +08:00
|
|
|
}
|
2017-05-17 12:05:42 +08:00
|
|
|
|
|
|
|
& &-item-disabled > &-header {
|
|
|
|
&,
|
|
|
|
& > .arrow {
|
|
|
|
cursor: not-allowed;
|
|
|
|
color: @disabled-color;
|
|
|
|
}
|
|
|
|
}
|
2015-07-11 10:17:58 +08:00
|
|
|
}
|