Files
vant/src/action-sheet/index.less
T
2019-07-20 10:49:06 +08:00

65 lines
1.4 KiB
Plaintext

@import '../style/var';
.van-action-sheet {
max-height: @action-sheet-max-height;
color: @action-sheet-item-text-color;
&__item,
&__cancel {
font-size: @action-sheet-item-font-size;
line-height: @action-sheet-item-height;
text-align: center;
background-color: @action-sheet-item-background;
&:active {
background-color: @active-color;
}
}
&__item {
height: @action-sheet-item-height;
&--disabled {
color: @action-sheet-item-disabled-text-color;
&:active {
background-color: @action-sheet-item-background;
}
}
}
&__subname {
margin-left: 5px;
color: @action-sheet-subname-color;
font-size: @action-sheet-subname-font-size;
}
&__cancel::before {
display: block;
height: @action-sheet-cancel-padding-top;
background-color: @action-sheet-cancel-padding-color;
content: ' ';
}
&__header {
font-size: @action-sheet-header-font-size;
line-height: @action-sheet-header-height;
text-align: center;
}
&__close {
position: absolute;
top: 0;
right: 0;
padding: @action-sheet-close-icon-padding;
color: @action-sheet-close-icon-color;
font-size: @action-sheet-close-icon-size;
line-height: inherit;
}
&--safe-area-inset-bottom {
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
}
}