[improvement] Loading: optimize circular icon (#1154)

This commit is contained in:
neverland 2018-12-25 20:53:36 +08:00 committed by GitHub
parent 84b0333350
commit 631e7e3c47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 5 deletions

View File

@ -20,8 +20,8 @@
>
<van-loading
wx:if="{{ loading }}"
size="20px"
custom-class="loading-class"
size="{{ size === 'mini' ? '14px' : '20px' }}"
color="{{ type === 'default' ? '#c9c9c9' : '' }}"
/>
<slot wx:else />

View File

@ -2,7 +2,6 @@
.van-loading {
z-index: 0;
font-size: 0;
line-height: 0;
position: relative;
display: inline-block;
@ -24,8 +23,8 @@
&--circular {
border: 1px solid;
border-radius: 100%;
border-color: currentColor;
border-top-color: transparent;
border-color: transparent;
border-top-color: currentColor
}
}
@ -48,7 +47,6 @@
}
}
.generate(@n, @i: 1) when (@i =< @n) {
.van-loading__dot:nth-of-type(@{i}) {
opacity: 1 - (0.75 / 12) * (@i - 1);