mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-28 12:26: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
23 lines
339 B
CSS
23 lines
339 B
CSS
@import './common/var.css';
|
|
|
|
.van-uploader {
|
|
position: relative;
|
|
display: inline-block;
|
|
|
|
&__input {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 0;
|
|
cursor: pointer;
|
|
}
|
|
|
|
input[type="file"]::-webkit-file-upload-button {
|
|
cursor: pointer;
|
|
}
|
|
}
|