ant-design/components/collapse/style/index.less

110 lines
2.3 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
@collapse-prefix-cls: ~"@{ant-prefix}-collapse";
2015-07-11 10:17:58 +08:00
2015-11-26 19:32:55 +08:00
.collapse-close() {
.iconfont-size-under-12px(9px, 0);
2015-11-26 19:32:55 +08:00
}
.collapse-open() {
.iconfont-size-under-12px(9px, 90deg);
2015-07-11 10:17:58 +08:00
}
2015-08-20 16:55:42 +08:00
.@{collapse-prefix-cls} {
2016-07-21 15:02:24 +08:00
background-color: @background-color-base;
border-radius: @border-radius-base;
border: @border-width-base @border-style-base @border-color-base;
border-bottom: 0;
2015-07-11 10:17:58 +08:00
2015-07-14 21:09:16 +08:00
& > &-item {
border-bottom: @border-width-base @border-style-base @border-color-base;
2015-08-20 16:55:42 +08:00
> .@{collapse-prefix-cls}-header {
2015-07-14 21:09:16 +08:00
height: 38px;
line-height: 38px;
padding-left: 32px;
2016-11-08 20:50:59 +08:00
color: @text-color;
cursor: pointer;
position: relative;
transition: all .3s;
&:active {
background-color: #eee!important;
}
.arrow {
2015-11-26 19:32:55 +08:00
.collapse-close();
.iconfont-mixin();
position: absolute;
color: @text-color-secondary;
2015-07-14 21:09:16 +08:00
display: inline-block;
font-weight: bold;
line-height: 40px;
2015-08-17 12:27:03 +08:00
vertical-align: middle;
transition: transform 0.24s;
2015-11-04 17:54:51 +08:00
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";
}
2015-07-14 21:09:16 +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;
2015-07-11 10:17:58 +08:00
padding: 0 16px;
background-color: @component-background;
2015-07-14 21:09:16 +08:00
& > &-box {
2015-08-20 15:39:36 +08:00
padding-top: 16px;
padding-bottom: 16px;
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 {
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
}
}
&-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;
}
}
2015-07-11 10:17:58 +08:00
}