You've already forked qlg.tsgz.moe
addons
app_download_files
extend
hyhproject
mobile
oss
static
app
app2
css
default-skin
ac.css
activity1.css
activity10.css
activity2.css
activity3.css
activity4.css
activity5.css
activity6.css
activity7.css
activity8.css
activity9.css
addessay.css
addgoods.css
addqrrz.css
addshopping.css
addyhk.css
applicationopen.css
appraise.css
bill.css
cash-out.css
classify.css
collect.css
collect_commodity.css
collect_store.css
complain.css
confirmOrder.css
cooperative.css
details.css
discount.css
discounts.css
dynamic.css
ect_address.css
ect_area.css
ect_index.css
ect_list.css
editAddress.css
essay.css
essaylist.css
family.css
friends.css
global.1.css
global.css
goodslist.css
guide.css
header.css
header1.css
home.css
home_new.css
income-details.css
indent.css
indentcon.css
index.css
individual.css
invest.css
investdetail.css
journalism.css
journalism_con.css
login.css
logistics.css
map.css
memorandumlist.css
msg.css
msg_con.css
mui.css
mui.min.css
mui.picker.css
mui.poppicker.css
my.css
my_help_sale.css
myshop.css
myshops.css
notepad.css
order_con.css
orsupermarket.css
pay.css
paymentVoucher.css
photoswipe.css
pj.css
properties.css
qrrz.css
recommend.css
reviewsmanage.css
rul.css
saoyisao.css
self_shop.css
setting.css
setting_address.css
sha.css
share.css
share_user_list.css
shop_decorate.css
shop_indentcon.css
shopdecoration.css
shopgoodlist.css
shoppingcart.css
shopsList.css
shopsetting.css
store_activity.css
store_class.css
store_commodity.css
store_home.css
store_info.css
store_new.css
storeout.css
swiper.min.css
time.css
time_limit.css
topnav.css
trade_rule.css
upload.css
upload1.css
vouchers.css
yhk.css
zhuweiba.css
img
js
images
js
plugins
src
template
thinkphp
upload
vendor
wxtmp
.gitignore
.htaccess
.user.ini
404.html
H5B854518.wgt
admin.php
app-release.apk
app_download.html
cash.lock
demo.php
get_startup.php
get_version.php
get_version_new.php
index.html
index.php
reg.lock
robots.txt
85 lines
2.2 KiB
CSS
Executable File
85 lines
2.2 KiB
CSS
Executable File
/**
|
|
* 选择列表插件
|
|
* varstion 2.0.0
|
|
* by Houfeng
|
|
* Houfeng@DCloud.io
|
|
*/
|
|
|
|
.mui-picker {
|
|
background-color: #ddd;
|
|
position: relative;
|
|
height: 200px;
|
|
overflow: hidden;
|
|
border: solid 1px rgba(0, 0, 0, 0.1);
|
|
-webkit-user-select: none;
|
|
user-select: none;
|
|
box-sizing: border-box;
|
|
}
|
|
.mui-picker-inner {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
-webkit-mask-box-image: -webkit-linear-gradient(bottom, transparent, transparent 5%, #fff 20%, #fff 80%, transparent 95%, transparent);
|
|
-webkit-mask-box-image: linear-gradient(top, transparent, transparent 5%, #fff 20%, #fff 80%, transparent 95%, transparent);
|
|
}
|
|
.mui-pciker-list,
|
|
.mui-pciker-rule {
|
|
box-sizing: border-box;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
width: 100%;
|
|
height: 36px;
|
|
line-height: 36px;
|
|
position: absolute;
|
|
left: 0px;
|
|
top: 50%;
|
|
margin-top: -18px;
|
|
}
|
|
.mui-pciker-rule-bg {
|
|
z-index: 0;
|
|
/*background-color: #cfd5da;*/
|
|
}
|
|
.mui-pciker-rule-ft {
|
|
z-index: 2;
|
|
border-top: solid 1px rgba(0, 0, 0, 0.1);
|
|
border-bottom: solid 1px rgba(0, 0, 0, 0.1);
|
|
/*-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);*/
|
|
/*box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);*/
|
|
}
|
|
.mui-pciker-list {
|
|
z-index: 1;
|
|
-webkit-transform-style: preserve-3d;
|
|
transform-style: preserve-3d;
|
|
-webkit-transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
|
|
transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
|
|
}
|
|
.mui-pciker-list li {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
-webkit-backface-visibility: hidden;
|
|
backface-visibility: hidden;
|
|
overflow: hidden;
|
|
box-sizing: border-box;
|
|
font-size: 16px;
|
|
font-family: "Helvetica Neue", "Helvetica", "Arial", "sans-serif";
|
|
color: #888;
|
|
padding: 0px 8px;
|
|
white-space: nowrap;
|
|
-webkit-text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
cursor: default;
|
|
visibility: hidden;
|
|
}
|
|
.mui-pciker-list li.highlight,
|
|
.mui-pciker-list li.visible {
|
|
visibility: visible;
|
|
}
|
|
.mui-pciker-list li.highlight {
|
|
color: #222;
|
|
} |