This commit is contained in:
2023-08-11 10:45:20 +08:00
commit 161ca982f3
31850 changed files with 2706500 additions and 0 deletions

0
node_modules/vant/es/style/mixins/clearfix.css generated vendored Normal file
View File

7
node_modules/vant/es/style/mixins/clearfix.less generated vendored Normal file
View File

@ -0,0 +1,7 @@
.clearfix() {
&::after {
display: table;
clear: both;
content: '';
}
}

0
node_modules/vant/es/style/mixins/ellipsis.css generated vendored Normal file
View File

15
node_modules/vant/es/style/mixins/ellipsis.less generated vendored Normal file
View File

@ -0,0 +1,15 @@
.multi-ellipsis(@lines) {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: @lines;
/* autoprefixer: ignore next */
-webkit-box-orient: vertical;
}
.ellipsis() {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

0
node_modules/vant/es/style/mixins/hairline.css generated vendored Normal file
View File

39
node_modules/vant/es/style/mixins/hairline.less generated vendored Normal file
View File

@ -0,0 +1,39 @@
@import '../var';
.hairline-common() {
position: absolute;
box-sizing: border-box;
content: ' ';
pointer-events: none;
}
.hairline(@color: @border-color) {
.hairline-common();
top: -50%;
right: -50%;
bottom: -50%;
left: -50%;
border: 0 solid @color;
transform: scale(0.5);
}
.hairline-top(@color: @border-color, @left: 0, @right: 0) {
.hairline-common();
top: 0;
right: @right;
left: @left;
border-top: 1px solid @color;
transform: scaleY(0.5);
}
.hairline-bottom(@color: @border-color, @left: 0, @right: 0) {
.hairline-common();
right: @right;
bottom: 0;
left: @left;
border-bottom: 1px solid @color;
transform: scaleY(0.5);
}