mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
62 lines
988 B
Plaintext
62 lines
988 B
Plaintext
@import '../common/style/var.less';
|
|
|
|
.van-action-sheet {
|
|
max-height: 90% !important;
|
|
color: @text-color;
|
|
|
|
&__item,
|
|
&__cancel {
|
|
height: 50px;
|
|
font-size: 16px;
|
|
line-height: 50px;
|
|
text-align: center;
|
|
background-color: @white;
|
|
|
|
&--hover {
|
|
background-color: @active-color;
|
|
}
|
|
}
|
|
|
|
&__cancel {
|
|
height: 60px;
|
|
|
|
&::before {
|
|
display: block;
|
|
height: 10px;
|
|
background-color: @background-color;
|
|
content: ' ';
|
|
}
|
|
}
|
|
|
|
&__item--disabled {
|
|
color: @gray;
|
|
}
|
|
|
|
&__item--disabled&__item--hover {
|
|
background-color: @white;
|
|
}
|
|
|
|
&__subname {
|
|
margin-left: 5px;
|
|
color: @gray-darker;
|
|
font-size: 12px;
|
|
}
|
|
|
|
&__header {
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
line-height: 44px;
|
|
text-align: center;
|
|
}
|
|
|
|
&__close {
|
|
position: absolute !important;
|
|
top: 0;
|
|
right: 0;
|
|
padding: 0 15px;
|
|
color: @gray-dark;
|
|
font-size: 18px !important;
|
|
line-height: inherit !important;
|
|
}
|
|
}
|