mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
@import '../common/style/var.less';
|
|
@import '../common/style/theme.less';
|
|
|
|
.van-collapse-item {
|
|
&__title {
|
|
.van-cell__right-icon {
|
|
transform: rotate(90deg);
|
|
.theme(transition, 'transform @collapse-item-transition-duration');
|
|
}
|
|
|
|
&--expanded {
|
|
.van-cell__right-icon {
|
|
transform: rotate(-90deg);
|
|
}
|
|
}
|
|
|
|
&--disabled {
|
|
.van-cell,
|
|
.van-cell__right-icon {
|
|
.theme(color, '@collapse-item-title-disabled-color') !important;
|
|
}
|
|
|
|
.van-cell--hover {
|
|
.theme(background-color, '@white') !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__wrapper {
|
|
overflow: hidden;
|
|
|
|
&--transition {
|
|
transition: height 300ms ease-in-out;
|
|
}
|
|
}
|
|
|
|
&__content {
|
|
.theme(padding, '@collapse-item-content-padding');
|
|
.theme(color, '@collapse-item-content-text-color');
|
|
.theme(font-size, '@collapse-item-content-font-size');
|
|
.theme(line-height, '@collapse-item-content-line-height');
|
|
.theme(background-color, '@collapse-item-content-background-color');
|
|
}
|
|
}
|