mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-06 23:56:35 +08:00
* [bugfix] CouponList always show empty info * [bugfix] add click feedback of buttons in components * [Doc] add custom theme document * [new feature] Notice bar support more props * [bugfix] PullRefresh test cases * [bugfix] unused NoticeBar style * [bugfix] Swipe width calc error * [Doc] english document of all action components * [Doc] change document site path to /zanui/vant * [Doc] fix * [bugfix] uploader style error * [bugfix] tabs document demo * [new feature] Cell support vue-router target route * [bugfix] add cell test cases * update yarn.lock * [bugfix] Tabbar cann't display info when use icon slot * [Doc] update document title * [bugfix] Dialog should reset button text when showed * [new feature] CouponList add showCloseButton prop * [new feature] Swipe add 'initialSwipe' prop * [bugfix] NoticeBar text disappeared when page back * [new feature] ImagePreview support startPosition * fix: improve imagePreview test cases * [bugfix] Steps style error when has more than 4 items * [new feature] normalize size of all icons
72 lines
1.1 KiB
CSS
72 lines
1.1 KiB
CSS
@import './common/var.css';
|
|
|
|
.van-address-list {
|
|
height: 100%;
|
|
|
|
.van-cell__value {
|
|
color: $text-color;
|
|
padding-right: 34px;
|
|
position: relative;
|
|
}
|
|
|
|
.van-radio__label {
|
|
margin-left: 32px;
|
|
}
|
|
|
|
.van-radio__input {
|
|
top: 50%;
|
|
left: 0;
|
|
position: absolute;
|
|
transform: translate(0, -50%);
|
|
}
|
|
|
|
.van-icon-checked {
|
|
color: $blue;
|
|
}
|
|
|
|
&__group {
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
padding-bottom: 40px;
|
|
box-sizing: border-box;
|
|
-webkit-overflow-scrolling: touch;
|
|
background-color: $background-color;
|
|
}
|
|
|
|
&__name {
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
&__address {
|
|
font-size: 12px;
|
|
line-height: 1.5;
|
|
color: $gray-darker;
|
|
}
|
|
|
|
&__edit {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 4px;
|
|
font-size: 20px;
|
|
color: $gray-dark;
|
|
transform: translate(0, -50%);
|
|
}
|
|
|
|
&__add {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 9999;
|
|
padding-left: 15px;
|
|
|
|
.van-cell__text {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.van-icon-add {
|
|
color: $blue;
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
} |