mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(Col): incorrect style in less 4.0 (#4322)
This commit is contained in:
parent
a3fc862865
commit
baf11400d8
@ -6,10 +6,10 @@
|
|||||||
.generate(24);
|
.generate(24);
|
||||||
.generate(@n, @i: 1) when (@i =< @n) {
|
.generate(@n, @i: 1) when (@i =< @n) {
|
||||||
.van-col--@{i} {
|
.van-col--@{i} {
|
||||||
width: @i * 100% / 24;
|
width: @i * (100% / 24);
|
||||||
}
|
}
|
||||||
.van-col--offset-@{i} {
|
.van-col--offset-@{i} {
|
||||||
margin-left: @i * 100% / 24;
|
margin-left: @i * (100% / 24);
|
||||||
}
|
}
|
||||||
.generate(@n, (@i + 1));
|
.generate(@n, (@i + 1));
|
||||||
}
|
}
|
||||||
|
@ -269,7 +269,7 @@
|
|||||||
@goods-action-icon-text-color: @gray-7;
|
@goods-action-icon-text-color: @gray-7;
|
||||||
@goods-action-button-height: 40px;
|
@goods-action-button-height: 40px;
|
||||||
@goods-action-button-line-height: @button-line-height;
|
@goods-action-button-line-height: @button-line-height;
|
||||||
@goods-action-button-border-radius: @goods-action-button-height / 2;
|
@goods-action-button-border-radius: @border-radius-max;
|
||||||
@goods-action-button-warning-color: @gradient-orange;
|
@goods-action-button-warning-color: @gradient-orange;
|
||||||
@goods-action-button-danger-color: @gradient-red;
|
@goods-action-button-danger-color: @gradient-red;
|
||||||
@goods-action-button-plain-color: @white;
|
@goods-action-button-plain-color: @white;
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
.theme(background-color, '@search-background-color');
|
.theme(background-color, '@search-background-color');
|
||||||
|
|
||||||
&--round {
|
&--round {
|
||||||
.theme(border-radius, 'calc(@search-input-height / 2)');
|
.theme(border-radius, '@border-radius-max');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -86,9 +86,7 @@
|
|||||||
top: -2px;
|
top: -2px;
|
||||||
right: -2px;
|
right: -2px;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
// font-size: 16px;
|
|
||||||
transform: scale(0.5);
|
transform: scale(0.5);
|
||||||
// .theme(font-size, 'calc(@uploader-delete-icon-size / 2 + 9px)');
|
|
||||||
.theme(font-size, 'calc(@uploader-delete-icon-size + 2px)');
|
.theme(font-size, 'calc(@uploader-delete-icon-size + 2px)');
|
||||||
.theme(color, '@uploader-delete-color');
|
.theme(color, '@uploader-delete-color');
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user