vant/src/share-sheet/index.less
2021-06-12 15:52:22 +08:00

115 lines
3.3 KiB
Plaintext

@import './var.less';
@import '../style/mixins/hairline';
:root {
--van-share-sheet-header-padding: @share-sheet-header-padding;
--van-share-sheet-title-color: @share-sheet-title-color;
--van-share-sheet-title-font-size: @share-sheet-title-font-size;
--van-share-sheet-title-line-height: @share-sheet-title-line-height;
--van-share-sheet-description-color: @share-sheet-description-color;
--van-share-sheet-description-font-size: @share-sheet-description-font-size;
--van-share-sheet-description-line-height: @share-sheet-description-line-height;
--van-share-sheet-icon-size: @share-sheet-icon-size;
--van-share-sheet-option-name-color: @share-sheet-option-name-color;
--van-share-sheet-option-name-font-size: @share-sheet-option-name-font-size;
--van-share-sheet-option-description-color: @share-sheet-option-description-color;
--van-share-sheet-option-description-font-size: @share-sheet-option-description-font-size;
--van-share-sheet-cancel-button-font-size: @share-sheet-cancel-button-font-size;
--van-share-sheet-cancel-button-height: @share-sheet-cancel-button-height;
--van-share-sheet-cancel-button-background: @share-sheet-cancel-button-background;
}
.van-share-sheet {
&__header {
padding: var(--van-share-sheet-header-padding);
text-align: center;
}
&__title {
margin-top: @padding-xs;
color: var(--van-share-sheet-title-color);
font-weight: normal;
font-size: var(--van-share-sheet-title-font-size);
line-height: var(--van-share-sheet-title-line-height);
}
&__description {
display: block;
margin-top: @padding-xs;
color: var(--van-share-sheet-description-color);
font-size: var(--van-share-sheet-description-font-size);
line-height: var(--van-share-sheet-description-line-height);
}
&__options {
position: relative;
display: flex;
padding: @padding-md 0 @padding-md @padding-xs;
overflow-x: auto;
overflow-y: visible;
-webkit-overflow-scrolling: touch;
&--border::before {
.hairline-top(@border-color, @padding-md);
}
&::-webkit-scrollbar {
height: 0;
}
}
&__option {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
user-select: none;
&:active {
opacity: @active-opacity;
}
}
&__icon {
width: var(--van-share-sheet-icon-size);
height: var(--van-share-sheet-icon-size);
margin: 0 @padding-md;
}
&__name {
margin-top: @padding-xs;
padding: 0 @padding-base;
color: var(--van-share-sheet-option-name-color);
font-size: var(--van-share-sheet-option-name-font-size);
}
&__option-description {
padding: 0 @padding-base;
color: var(--van-share-sheet-option-description-color);
font-size: var(--van-share-sheet-option-description-font-size);
}
&__cancel {
display: block;
width: 100%;
padding: 0;
font-size: var(--van-share-sheet-cancel-button-font-size);
line-height: var(--van-share-sheet-cancel-button-height);
text-align: center;
background: var(--van-share-sheet-cancel-button-background);
border: none;
cursor: pointer;
&::before {
display: block;
height: @padding-xs;
background-color: @background-color;
content: ' ';
}
&:active {
background-color: @active-color;
}
}
}