mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
56 lines
1.2 KiB
Plaintext
56 lines
1.2 KiB
Plaintext
@import '../common/style/var.less';
|
|
@import '../common/style/theme.less';
|
|
|
|
:host {
|
|
flex: 1;
|
|
}
|
|
|
|
.van-goods-action-button {
|
|
.theme(
|
|
--button-warning-background-color,
|
|
'@goods-action-button-warning-color'
|
|
);
|
|
.theme(--button-danger-background-color, '@goods-action-button-danger-color');
|
|
.theme(--button-default-height, '@goods-action-button-height');
|
|
.theme(--button-line-height, '@goods-action-button-height');
|
|
.theme(--button-plain-background-color, '@goods-action-button-plain-color');
|
|
|
|
display: block;
|
|
|
|
--button-border-width: 0;
|
|
|
|
&--first {
|
|
margin-left: 5px;
|
|
|
|
.theme(
|
|
--button-border-radius,
|
|
'@goods-action-button-border-radius 0 0 @goods-action-button-border-radius'
|
|
);
|
|
}
|
|
|
|
&--last {
|
|
margin-right: 5px;
|
|
.theme(
|
|
--button-border-radius,
|
|
'0 @goods-action-button-border-radius @goods-action-button-border-radius 0'
|
|
);
|
|
}
|
|
|
|
&--first&--last {
|
|
.theme(--button-border-radius, '@goods-action-button-border-radius');
|
|
}
|
|
|
|
&--plain {
|
|
--button-border-width: @button-border-width;
|
|
}
|
|
|
|
&__inner {
|
|
width: 100%;
|
|
.theme(font-weight, '@font-weight-bold') !important;
|
|
}
|
|
|
|
@media (max-width: 321px) {
|
|
font-size: 13px;
|
|
}
|
|
}
|