fix(Col): incorrect style in less 4.0 (#4322)

This commit is contained in:
neverland 2021-07-06 10:14:11 +08:00 committed by GitHub
parent a3fc862865
commit baf11400d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 6 deletions

View File

@ -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));
} }

View File

@ -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;

View File

@ -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');
} }
} }

View File

@ -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');
} }