mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
build: add stylelint (#1982)
This commit is contained in:
parent
64c7c30b21
commit
eef1fc6678
14
.stylelintrc
Normal file
14
.stylelintrc
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"extends": [
|
||||||
|
"stylelint-config-standard",
|
||||||
|
"stylelint-config-rational-order"
|
||||||
|
],
|
||||||
|
"rules": {
|
||||||
|
"order/properties-order": [],
|
||||||
|
"at-rule-no-unknown": null,
|
||||||
|
"number-leading-zero": null,
|
||||||
|
"no-descending-specificity": null,
|
||||||
|
"declaration-colon-newline-after": null,
|
||||||
|
"font-family-no-missing-generic-family-keyword": null
|
||||||
|
}
|
||||||
|
}
|
@ -31,6 +31,10 @@
|
|||||||
"*.{ts,js}": [
|
"*.{ts,js}": [
|
||||||
"eslint",
|
"eslint",
|
||||||
"git add"
|
"git add"
|
||||||
|
],
|
||||||
|
"*.{css,less}": [
|
||||||
|
"stylelint",
|
||||||
|
"git add"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/youzan/vant-weapp#readme",
|
"homepage": "https://github.com/youzan/vant-weapp#readme",
|
||||||
@ -63,6 +67,10 @@
|
|||||||
"postcss-loader": "^3.0.0",
|
"postcss-loader": "^3.0.0",
|
||||||
"progress-bar-webpack-plugin": "^1.11.0",
|
"progress-bar-webpack-plugin": "^1.11.0",
|
||||||
"style-loader": "^1.0.0",
|
"style-loader": "^1.0.0",
|
||||||
|
"stylelint": "^10.1.0",
|
||||||
|
"stylelint-config-rational-order": "^0.1.2",
|
||||||
|
"stylelint-config-standard": "^18.3.0",
|
||||||
|
"stylelint-order": "^3.0.1",
|
||||||
"typescript": "^3.5.3",
|
"typescript": "^3.5.3",
|
||||||
"vue": "2.6.10",
|
"vue": "2.6.10",
|
||||||
"vue-loader": "^15.7.1",
|
"vue-loader": "^15.7.1",
|
||||||
|
@ -38,13 +38,13 @@
|
|||||||
|
|
||||||
&__subname {
|
&__subname {
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
font-size: 12px;
|
|
||||||
color: @gray-darker;
|
color: @gray-darker;
|
||||||
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__header {
|
&__header {
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
font-size: 16px;
|
||||||
line-height: 44px;
|
line-height: 44px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
@ -54,8 +54,8 @@
|
|||||||
top: 0;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
|
color: @gray-dark;
|
||||||
font-size: 18px !important;
|
font-size: 18px !important;
|
||||||
line-height: inherit !important;
|
line-height: inherit !important;
|
||||||
color: @gray-dark;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
// empty
|
@ -3,13 +3,13 @@
|
|||||||
.van-button {
|
.van-button {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
box-sizing: border-box;
|
||||||
height: 44px;
|
height: 44px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
line-height: 42px;
|
line-height: 42px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
box-sizing: border-box;
|
|
||||||
border-radius: @button-border-radius;
|
border-radius: @button-border-radius;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
@ -24,9 +24,9 @@
|
|||||||
border: inherit;
|
border: inherit;
|
||||||
border-color: @black;
|
border-color: @black;
|
||||||
border-radius: inherit; /* inherit parent's border radius */
|
border-radius: inherit; /* inherit parent's border radius */
|
||||||
content: ' ';
|
|
||||||
opacity: 0;
|
|
||||||
transform: translate(-50%, -50%);
|
transform: translate(-50%, -50%);
|
||||||
|
opacity: 0;
|
||||||
|
content: ' ';
|
||||||
}
|
}
|
||||||
|
|
||||||
// reset weapp default border
|
// reset weapp default border
|
||||||
@ -104,8 +104,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&--small {
|
&--small {
|
||||||
height: 30px;
|
|
||||||
min-width: 60px;
|
min-width: 60px;
|
||||||
|
height: 30px;
|
||||||
padding: 0 8px;
|
padding: 0 8px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 28px;
|
line-height: 28px;
|
||||||
@ -146,8 +146,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__loading-text {
|
&__loading-text {
|
||||||
margin-left: 5px;
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
margin-left: 5px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -164,12 +164,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&--hairline {
|
&--hairline {
|
||||||
border-width: 0;
|
|
||||||
padding-top: 1px; // add 1px padding for text vertical align middle
|
padding-top: 1px; // add 1px padding for text vertical align middle
|
||||||
|
border-width: 0;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
border-width: 1px;
|
|
||||||
border-color: inherit;
|
border-color: inherit;
|
||||||
|
border-width: 1px;
|
||||||
border-radius: @button-border-radius * 2;
|
border-radius: @button-border-radius * 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
.van-card {
|
.van-card {
|
||||||
position: relative;
|
position: relative;
|
||||||
padding: 5px 15px;
|
|
||||||
font-size: 12px;
|
|
||||||
color: @text-color;
|
|
||||||
background-color: @background-color-light;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
padding: 5px 15px;
|
||||||
|
color: @text-color;
|
||||||
|
font-size: 12px;
|
||||||
|
background-color: @background-color-light;
|
||||||
|
|
||||||
&__header {
|
&__header {
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -19,10 +19,10 @@
|
|||||||
|
|
||||||
&__thumb {
|
&__thumb {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
flex: none;
|
||||||
width: 90px;
|
width: 90px;
|
||||||
height: 90px;
|
height: 90px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
flex: none;
|
|
||||||
|
|
||||||
&:empty {
|
&:empty {
|
||||||
display: none;
|
display: none;
|
||||||
@ -36,8 +36,8 @@
|
|||||||
|
|
||||||
&__content {
|
&__content {
|
||||||
position: relative;
|
position: relative;
|
||||||
min-width: 0; /* hack for flex box ellipsis */
|
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
min-width: 0; /* hack for flex box ellipsis */
|
||||||
}
|
}
|
||||||
|
|
||||||
&__title,
|
&__title,
|
||||||
@ -51,8 +51,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__desc {
|
&__desc {
|
||||||
line-height: 20px;
|
|
||||||
color: @gray-darker;
|
color: @gray-darker;
|
||||||
|
line-height: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__bottom {
|
&__bottom {
|
||||||
@ -61,15 +61,15 @@
|
|||||||
|
|
||||||
&__price {
|
&__price {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-weight: bold;
|
|
||||||
color: @red;
|
color: @red;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__origin-price {
|
&__origin-price {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
font-size: 10px;
|
|
||||||
color: @gray-darker;
|
color: @gray-darker;
|
||||||
|
font-size: 10px;
|
||||||
text-decoration: line-through;
|
text-decoration: line-through;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -84,8 +84,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__footer {
|
&__footer {
|
||||||
|
flex: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
flex: none;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
.van-cell-group {
|
.van-cell-group {
|
||||||
&__title {
|
&__title {
|
||||||
font-size: 14px;
|
|
||||||
padding: 15px 15px 5px;
|
padding: 15px 15px 5px;
|
||||||
color: @gray-dark;
|
color: @gray-dark;
|
||||||
|
font-size: 14px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,13 +4,13 @@
|
|||||||
.van-cell {
|
.van-cell {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
box-sizing: border-box;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 10px 15px;
|
padding: 10px 15px;
|
||||||
|
color: @text-color;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
color: @text-color;
|
|
||||||
background-color: @white;
|
background-color: @white;
|
||||||
box-sizing: border-box;
|
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
.hairline-bottom(@border-color, 15px);
|
.hairline-bottom(@border-color, 15px);
|
||||||
@ -26,9 +26,9 @@
|
|||||||
|
|
||||||
&__label {
|
&__label {
|
||||||
margin-top: 3px;
|
margin-top: 3px;
|
||||||
|
color: @gray-dark;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
color: @gray-dark;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__value {
|
&__value {
|
||||||
@ -50,9 +50,9 @@
|
|||||||
&__left-icon-wrap,
|
&__left-icon-wrap,
|
||||||
&__right-icon-wrap {
|
&__right-icon-wrap {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
align-items: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__left-icon-wrap {
|
&__left-icon-wrap {
|
||||||
@ -83,8 +83,8 @@
|
|||||||
&::before {
|
&::before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 7px;
|
left: 7px;
|
||||||
font-size: 14px;
|
|
||||||
color: @red;
|
color: @red;
|
||||||
|
font-size: 14px;
|
||||||
content: '*';
|
content: '*';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
// empty
|
@ -16,13 +16,13 @@
|
|||||||
|
|
||||||
&__icon {
|
&__icon {
|
||||||
display: block;
|
display: block;
|
||||||
|
box-sizing: border-box;
|
||||||
width: @checkbox-size;
|
width: @checkbox-size;
|
||||||
height: @checkbox-size;
|
height: @checkbox-size;
|
||||||
font-size: 14px;
|
|
||||||
color: transparent;
|
color: transparent;
|
||||||
|
font-size: 14px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border: 1px solid @checkbox-border-color;
|
border: 1px solid @checkbox-border-color;
|
||||||
box-sizing: border-box;
|
|
||||||
transition: @checkbox-transition-duration;
|
transition: @checkbox-transition-duration;
|
||||||
|
|
||||||
&--round {
|
&--round {
|
||||||
|
@ -35,9 +35,9 @@
|
|||||||
|
|
||||||
&__content {
|
&__content {
|
||||||
padding: @collapse-item-content-padding;
|
padding: @collapse-item-content-padding;
|
||||||
|
color: @collapse-item-content-text-color;
|
||||||
font-size: @collapse-item-content-font-size;
|
font-size: @collapse-item-content-font-size;
|
||||||
line-height: @collapse-item-content-line-height;
|
line-height: @collapse-item-content-line-height;
|
||||||
color: @collapse-item-content-text-color;
|
|
||||||
background-color: @collapse-item-content-background-color;
|
background-color: @collapse-item-content-background-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/**
|
/**
|
||||||
* Entry of basic styles
|
* Entry of basic styles
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@import "./style/var.less";
|
@import "./style/var.less";
|
||||||
@import "./style/ellipsis.less";
|
@import "./style/ellipsis.less";
|
||||||
@import "./style/clearfix.less";
|
@import "./style/clearfix.less";
|
||||||
@import "./style/hairline.less";
|
@import "./style/hairline.less";
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
.clearfix() {
|
.clearfix() {
|
||||||
&::after {
|
&::after {
|
||||||
content: '';
|
|
||||||
display: table;
|
display: table;
|
||||||
clear: both;
|
clear: both;
|
||||||
|
content: '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
.multi-ellipsis(@lines) {
|
.multi-ellipsis(@lines) {
|
||||||
|
display: -webkit-box;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
display: -webkit-box;
|
|
||||||
-webkit-line-clamp: @lines;
|
-webkit-line-clamp: @lines;
|
||||||
|
|
||||||
/* autoprefixer: ignore next */
|
/* autoprefixer: ignore next */
|
||||||
-webkit-box-orient: vertical;
|
-webkit-box-orient: vertical;
|
||||||
}
|
}
|
||||||
|
@ -1,27 +1,29 @@
|
|||||||
.hairline-common() {
|
.hairline-common() {
|
||||||
content: ' ';
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
pointer-events: none;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
transform-origin: center; /* cover wechat button:after default transforn-origin */
|
transform-origin: center; /* cover wechat button:after default transforn-origin */
|
||||||
|
content: ' ';
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hairline(@border-color: #eee) {
|
.hairline(@border-color: #eee) {
|
||||||
.hairline-common();
|
.hairline-common();
|
||||||
|
|
||||||
top: -50%;
|
top: -50%;
|
||||||
left: -50%;
|
|
||||||
right: -50%;
|
right: -50%;
|
||||||
bottom: -50%;
|
bottom: -50%;
|
||||||
transform: scale(0.5);
|
left: -50%;
|
||||||
border: 0 solid @border-color;
|
border: 0 solid @border-color;
|
||||||
|
transform: scale(0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
.hairline-bottom(@border-color: #eee, @left: 0) {
|
.hairline-bottom(@border-color: #eee, @left: 0) {
|
||||||
.hairline-common();
|
.hairline-common();
|
||||||
|
|
||||||
top: auto;
|
top: auto;
|
||||||
left: @left;
|
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
transform: scaleY(0.5);
|
left: @left;
|
||||||
border-bottom: 1px solid @border-color;
|
border-bottom: 1px solid @border-color;
|
||||||
|
transform: scaleY(0.5);
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
// empty
|
@ -60,12 +60,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&-bounce-enter {
|
&-bounce-enter {
|
||||||
opacity: 0;
|
|
||||||
transform: translate3d(-50%, -50%, 0) scale(0.7);
|
transform: translate3d(-50%, -50%, 0) scale(0.7);
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&-bounce-leave-active {
|
&-bounce-leave-active {
|
||||||
opacity: 0;
|
|
||||||
transform: translate3d(-50%, -50%, 0) scale(0.9);
|
transform: translate3d(-50%, -50%, 0) scale(0.9);
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -18,17 +18,17 @@
|
|||||||
&__input {
|
&__input {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: block;
|
display: block;
|
||||||
|
box-sizing: border-box;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
min-height: 24px;
|
min-height: 24px;
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
line-height: inherit;
|
padding: 0;
|
||||||
color: @text-color;
|
color: @text-color;
|
||||||
|
line-height: inherit;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: 0;
|
border: 0;
|
||||||
box-sizing: border-box;
|
|
||||||
resize: none;
|
resize: none;
|
||||||
|
|
||||||
&--textarea {
|
&--textarea {
|
||||||
@ -70,14 +70,14 @@
|
|||||||
|
|
||||||
&__icon-root {
|
&__icon-root {
|
||||||
display: flex;
|
display: flex;
|
||||||
min-height: 24px;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
min-height: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__clear-root,
|
&__clear-root,
|
||||||
&__icon-container {
|
&__icon-container {
|
||||||
padding: 0 10px;
|
|
||||||
margin-right: -10px;
|
margin-right: -10px;
|
||||||
|
padding: 0 10px;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
@ -109,8 +109,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__error-message {
|
&__error-message {
|
||||||
font-size: 12px;
|
|
||||||
color: @red;
|
color: @red;
|
||||||
|
font-size: 12px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
||||||
&--center {
|
&--center {
|
||||||
|
@ -6,12 +6,12 @@
|
|||||||
|
|
||||||
&__content {
|
&__content {
|
||||||
display: flex;
|
display: flex;
|
||||||
height: 100%;
|
|
||||||
font-size: 10px;
|
|
||||||
line-height: 1;
|
|
||||||
color: @gray-darker;
|
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
height: 100%;
|
||||||
|
color: @gray-darker;
|
||||||
|
font-size: 10px;
|
||||||
|
line-height: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__icon {
|
&__icon {
|
||||||
|
@ -4,19 +4,19 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: -@info-size / 2;
|
top: -@info-size / 2;
|
||||||
right: 0;
|
right: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
min-width: @info-size;
|
min-width: @info-size;
|
||||||
padding: @info-padding;
|
padding: @info-padding;
|
||||||
font-family: @info-font-family;
|
|
||||||
font-size: @info-font-size;
|
|
||||||
font-weight: @info-font-weight;
|
|
||||||
line-height: @info-size - @info-border-width * 2;
|
|
||||||
color: @info-color;
|
color: @info-color;
|
||||||
text-align: center;
|
font-weight: @info-font-weight;
|
||||||
|
font-size: @info-font-size;
|
||||||
|
font-family: @info-font-family;
|
||||||
|
line-height: @info-size - @info-border-width * 2;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
text-align: center;
|
||||||
background-color: @info-background-color;
|
background-color: @info-background-color;
|
||||||
border: @info-border-width solid @white;
|
border: @info-border-width solid @white;
|
||||||
border-radius: @info-size;
|
border-radius: @info-size;
|
||||||
transform: translateX(50%);
|
transform: translateX(50%);
|
||||||
box-sizing: border-box;
|
|
||||||
transform-origin: 100%;
|
transform-origin: 100%;
|
||||||
}
|
}
|
||||||
|
@ -1,19 +1,19 @@
|
|||||||
@import '../common/style/var.less';
|
@import '../common/style/var.less';
|
||||||
|
|
||||||
.van-loading {
|
.van-loading {
|
||||||
z-index: 0;
|
|
||||||
line-height: 0;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
|
z-index: 0;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
line-height: 0;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
|
||||||
&__spinner {
|
&__spinner {
|
||||||
z-index: -1;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
|
z-index: -1;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
animation: van-rotate 0.8s linear infinite;
|
animation: van-rotate 0.8s linear infinite;
|
||||||
|
|
||||||
&--spinner {
|
&--spinner {
|
||||||
@ -22,35 +22,35 @@
|
|||||||
|
|
||||||
&--circular {
|
&--circular {
|
||||||
border: 1px solid;
|
border: 1px solid;
|
||||||
border-radius: 100%;
|
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
border-top-color: currentColor
|
border-top-color: currentColor;
|
||||||
|
border-radius: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__dot {
|
&__dot {
|
||||||
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: absolute;
|
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
|
display: block;
|
||||||
width: 2px;
|
width: 2px;
|
||||||
height: 25%;
|
height: 25%;
|
||||||
content: ' ';
|
|
||||||
display: block;
|
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
border-radius: 40%;
|
|
||||||
background-color: currentColor;
|
background-color: currentColor;
|
||||||
|
border-radius: 40%;
|
||||||
|
content: ' ';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.generate(@n, @i: 1) when (@i =< @n) {
|
.generate(@n, @i: 1) when (@i =< @n) {
|
||||||
.van-loading__dot:nth-of-type(@{i}) {
|
.van-loading__dot:nth-of-type(@{i}) {
|
||||||
opacity: 1 - (0.75 / 12) * (@i - 1);
|
|
||||||
transform: rotate(@i * 30deg);
|
transform: rotate(@i * 30deg);
|
||||||
|
opacity: 1 - (0.75 / 12) * (@i - 1);
|
||||||
}
|
}
|
||||||
.generate(@n, (@i + 1));
|
.generate(@n, (@i + 1));
|
||||||
}
|
}
|
||||||
|
@ -10,8 +10,8 @@
|
|||||||
|
|
||||||
&__text {
|
&__text {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 0 15px;
|
|
||||||
margin: 0 -15px;
|
margin: 0 -15px;
|
||||||
|
padding: 0 15px;
|
||||||
color: @blue;
|
color: @blue;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
|
||||||
@ -25,8 +25,8 @@
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
|
||||||
+ .van-nav-bar__text {
|
+ .van-nav-bar__text {
|
||||||
padding-left: 25px;
|
|
||||||
margin-left: -20px;
|
margin-left: -20px;
|
||||||
|
padding-left: 25px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -40,8 +40,8 @@
|
|||||||
&__title {
|
&__title {
|
||||||
max-width: 60%;
|
max-width: 60%;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__left,
|
&__left,
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
.van-notice-bar {
|
.van-notice-bar {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
&--withicon {
|
&--withicon {
|
||||||
position: relative;
|
position: relative;
|
||||||
@ -29,9 +29,9 @@
|
|||||||
|
|
||||||
&__left-icon {
|
&__left-icon {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
margin-right: 4px;
|
margin-right: 4px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
align-items: center;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__right-icon {
|
&__right-icon {
|
||||||
@ -43,9 +43,9 @@
|
|||||||
|
|
||||||
&__wrap {
|
&__wrap {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
flex: 1;
|
||||||
height: 24px;
|
height: 24px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
flex: 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__content {
|
&__content {
|
||||||
|
@ -3,13 +3,13 @@
|
|||||||
.van-notify {
|
.van-notify {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: @notify-padding;
|
padding: @notify-padding;
|
||||||
font-size: @notify-font-size;
|
font-size: @notify-font-size;
|
||||||
line-height: @notify-line-height;
|
line-height: @notify-line-height;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
box-sizing: border-box;
|
|
||||||
|
|
||||||
&__safe-top {
|
&__safe-top {
|
||||||
height: @nav-bar-height;
|
height: @nav-bar-height;
|
||||||
|
@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
.van-picker-column {
|
.van-picker-column {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
font-size: 16px;
|
|
||||||
color: @gray-dark;
|
color: @gray-dark;
|
||||||
|
font-size: 16px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
&__item {
|
&__item {
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
|
|
||||||
&--selected {
|
&--selected {
|
||||||
font-weight: 500;
|
|
||||||
color: @text-color;
|
color: @text-color;
|
||||||
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--disabled {
|
&--disabled {
|
||||||
|
@ -9,16 +9,16 @@
|
|||||||
|
|
||||||
&__toolbar {
|
&__toolbar {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
height: 44px;
|
height: 44px;
|
||||||
line-height: 44px;
|
line-height: 44px;
|
||||||
justify-content: space-between;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__cancel,
|
&__cancel,
|
||||||
&__confirm {
|
&__confirm {
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
font-size: 14px;
|
|
||||||
color: @blue;
|
color: @blue;
|
||||||
|
font-size: 14px;
|
||||||
|
|
||||||
&--hover {
|
&--hover {
|
||||||
background-color: @active-color;
|
background-color: @active-color;
|
||||||
@ -27,8 +27,8 @@
|
|||||||
|
|
||||||
&__title {
|
&__title {
|
||||||
max-width: 50%;
|
max-width: 50%;
|
||||||
font-size: 16px;
|
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
|
font-size: 16px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -50,9 +50,9 @@
|
|||||||
left: 0;
|
left: 0;
|
||||||
z-index: 4;
|
z-index: 4;
|
||||||
display: flex;
|
display: flex;
|
||||||
background-color: rgba(255, 255, 255, 0.9);
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
background-color: rgba(255, 255, 255, 0.9);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__loading .van-loading,
|
&__loading .van-loading,
|
||||||
@ -62,7 +62,7 @@
|
|||||||
left: 0;
|
left: 0;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
pointer-events: none;
|
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,13 +4,13 @@
|
|||||||
position: fixed;
|
position: fixed;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
|
box-sizing: border-box;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
background-color: @white;
|
background-color: @white;
|
||||||
box-sizing: border-box;
|
transition-timing-function: ease;
|
||||||
animation: ease both;
|
animation: ease both;
|
||||||
-webkit-overflow-scrolling: touch;
|
-webkit-overflow-scrolling: touch;
|
||||||
transition-timing-function: ease;
|
|
||||||
|
|
||||||
&--center {
|
&--center {
|
||||||
transform: translate3d(-50%, -50%, 0);
|
transform: translate3d(-50%, -50%, 0);
|
||||||
@ -95,8 +95,8 @@
|
|||||||
|
|
||||||
.van-scale-enter,
|
.van-scale-enter,
|
||||||
.van-scale-leave-to {
|
.van-scale-leave-to {
|
||||||
opacity: 0;
|
|
||||||
transform: translate3d(-50%, -50%, 0) scale(0.7);
|
transform: translate3d(-50%, -50%, 0) scale(0.7);
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.van-fade-enter-active,
|
.van-fade-enter-active,
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
right: 0;
|
right: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
min-width: 2em;
|
min-width: 2em;
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
@ -26,6 +27,5 @@
|
|||||||
background-color: @gray-light;
|
background-color: @gray-light;
|
||||||
border-radius: 1em;
|
border-radius: 1em;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
// empty
|
@ -16,13 +16,13 @@
|
|||||||
|
|
||||||
&__icon {
|
&__icon {
|
||||||
display: block;
|
display: block;
|
||||||
|
box-sizing: border-box;
|
||||||
width: @radio-size;
|
width: @radio-size;
|
||||||
height: @radio-size;
|
height: @radio-size;
|
||||||
font-size: 14px;
|
|
||||||
color: transparent;
|
color: transparent;
|
||||||
|
font-size: 14px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border: 1px solid @radio-border-color;
|
border: 1px solid @radio-border-color;
|
||||||
box-sizing: border-box;
|
|
||||||
transition: @radio-transition-duration;
|
transition: @radio-transition-duration;
|
||||||
|
|
||||||
&--round {
|
&--round {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
.van-row {
|
.van-row {
|
||||||
&::after {
|
&::after {
|
||||||
content: "";
|
|
||||||
display: table;
|
display: table;
|
||||||
clear: both;
|
clear: both;
|
||||||
|
content: "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
.van-search {
|
.van-search {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 10px 16px;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
padding: 10px 16px;
|
||||||
|
|
||||||
&__content {
|
&__content {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex: 1;
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
background-color: @search-background-color;
|
background-color: @search-background-color;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
flex: 1;
|
|
||||||
|
|
||||||
&--round {
|
&--round {
|
||||||
border-radius: 17px;
|
border-radius: 17px;
|
||||||
@ -20,9 +20,9 @@
|
|||||||
|
|
||||||
&__label {
|
&__label {
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
|
color: @text-color;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 34px;
|
line-height: 34px;
|
||||||
color: @text-color;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&__field {
|
&__field {
|
||||||
@ -39,9 +39,9 @@
|
|||||||
|
|
||||||
&__action {
|
&__action {
|
||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
|
color: @text-color;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 34px;
|
line-height: 34px;
|
||||||
color: @text-color;
|
|
||||||
|
|
||||||
&--hover {
|
&--hover {
|
||||||
background-color: @active-color;
|
background-color: @active-color;
|
||||||
|
@ -2,15 +2,15 @@
|
|||||||
|
|
||||||
.van-sidebar-item {
|
.van-sidebar-item {
|
||||||
display: block;
|
display: block;
|
||||||
|
box-sizing: border-box;
|
||||||
padding: 20px 12px 20px 9px;
|
padding: 20px 12px 20px 9px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
color: @gray-darker;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
color: @gray-darker;
|
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
background-color: @background-color;
|
background-color: @background-color;
|
||||||
border-left: 3px solid transparent;
|
border-left: 3px solid transparent;
|
||||||
box-sizing: border-box;
|
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
|
||||||
&--hover {
|
&--hover {
|
||||||
@ -22,8 +22,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&--active {
|
&--active {
|
||||||
font-weight: bold;
|
|
||||||
color: @text-color;
|
color: @text-color;
|
||||||
|
font-weight: bold;
|
||||||
border-color: @red;
|
border-color: @red;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
|
@ -2,20 +2,20 @@
|
|||||||
|
|
||||||
.van-slider {
|
.van-slider {
|
||||||
position: relative;
|
position: relative;
|
||||||
border-radius: 999px;
|
|
||||||
background-color: @gray-light;
|
background-color: @gray-light;
|
||||||
|
border-radius: 999px;
|
||||||
|
|
||||||
&__bar {
|
&__bar {
|
||||||
position: relative;
|
position: relative;
|
||||||
border-radius: inherit;
|
|
||||||
background-color: @blue;
|
background-color: @blue;
|
||||||
|
border-radius: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__button {
|
&__button {
|
||||||
width: 20px;
|
width: 20px;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
border-radius: 50%;
|
|
||||||
background-color: @white;
|
background-color: @white;
|
||||||
|
border-radius: 50%;
|
||||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
|
box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
|
||||||
|
|
||||||
&-wrapper {
|
&-wrapper {
|
||||||
@ -23,15 +23,15 @@
|
|||||||
top: 50%;
|
top: 50%;
|
||||||
right: 0;
|
right: 0;
|
||||||
transform: translate3d(50%, -50%, 0);
|
transform: translate3d(50%, -50%, 0);
|
||||||
|
|
||||||
/* use pseudo element to expand touch area */
|
/* use pseudo element to expand touch area */
|
||||||
&::after {
|
&::after {
|
||||||
content: '';
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 200%;
|
|
||||||
height: 200%;
|
|
||||||
top: -50%;
|
top: -50%;
|
||||||
left: -50%;
|
left: -50%;
|
||||||
|
width: 200%;
|
||||||
|
height: 200%;
|
||||||
|
content: '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,14 +7,14 @@
|
|||||||
&__plus {
|
&__plus {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
box-sizing: border-box;
|
||||||
width: 28px;
|
width: 28px;
|
||||||
height: 28px;
|
height: 28px;
|
||||||
padding: 5px;
|
|
||||||
margin: 1px;
|
margin: 1px;
|
||||||
|
padding: 5px;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
background-color: @stepper-background-color;
|
background-color: @stepper-background-color;
|
||||||
border: 0;
|
border: 0;
|
||||||
box-sizing: border-box;
|
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
width: 9px;
|
width: 9px;
|
||||||
@ -70,19 +70,19 @@
|
|||||||
|
|
||||||
&__input {
|
&__input {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
box-sizing: content-box;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 26px;
|
height: 26px;
|
||||||
padding: 1px;
|
|
||||||
margin: 1px;
|
margin: 1px;
|
||||||
font-size: 14px;
|
padding: 1px;
|
||||||
color: @text-color;
|
color: @text-color;
|
||||||
|
font-size: 14px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
background-color: @stepper-background-color;
|
background-color: @stepper-background-color;
|
||||||
border: 0;
|
border: 0;
|
||||||
border-width: 1px 0;
|
border-width: 1px 0;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
box-sizing: content-box;
|
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
|
|
||||||
&--disabled {
|
&--disabled {
|
||||||
|
@ -26,8 +26,8 @@
|
|||||||
.van-step {
|
.van-step {
|
||||||
position: relative;
|
position: relative;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
font-size: 14px;
|
|
||||||
color: @gray-dark;
|
color: @gray-dark;
|
||||||
|
font-size: 14px;
|
||||||
|
|
||||||
&--finish {
|
&--finish {
|
||||||
color: @text-color;
|
color: @text-color;
|
||||||
|
@ -10,9 +10,9 @@
|
|||||||
|
|
||||||
&__tip {
|
&__tip {
|
||||||
padding: @submit-bar-tip-padding;
|
padding: @submit-bar-tip-padding;
|
||||||
|
color: @submit-bar-tip-color;
|
||||||
font-size: @submit-bar-tip-font-size;
|
font-size: @submit-bar-tip-font-size;
|
||||||
line-height: @submit-bar-tip-line-height;
|
line-height: @submit-bar-tip-line-height;
|
||||||
color: @submit-bar-tip-color;
|
|
||||||
background-color: @submit-bar-tip-background-color;
|
background-color: @submit-bar-tip-background-color;
|
||||||
|
|
||||||
&:empty {
|
&:empty {
|
||||||
@ -34,11 +34,11 @@
|
|||||||
|
|
||||||
&__bar {
|
&__bar {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-end;
|
||||||
height: @submit-bar-height;
|
height: @submit-bar-height;
|
||||||
font-size: @submit-bar-text-font-size;
|
font-size: @submit-bar-text-font-size;
|
||||||
background-color: @submit-bar-background-color;
|
background-color: @submit-bar-background-color;
|
||||||
align-items: center;
|
|
||||||
justify-content: flex-end;
|
|
||||||
|
|
||||||
&--safe {
|
&--safe {
|
||||||
padding-bottom: @safe-area-inset-bottom;
|
padding-bottom: @safe-area-inset-bottom;
|
||||||
@ -46,16 +46,16 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__text {
|
&__text {
|
||||||
padding-right: 12px;
|
|
||||||
font-weight: 500;
|
|
||||||
color: @submit-bar-text-color;
|
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
padding-right: 12px;
|
||||||
|
color: @submit-bar-text-color;
|
||||||
|
font-weight: 500;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__price {
|
&__price {
|
||||||
font-size: @submit-bar-price-font-size;
|
|
||||||
color: @submit-bar-price-color;
|
color: @submit-bar-price-color;
|
||||||
|
font-size: @submit-bar-price-font-size;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__currency {
|
&__currency {
|
||||||
|
@ -1,33 +1,33 @@
|
|||||||
@import '../common/style/var.less';
|
@import '../common/style/var.less';
|
||||||
|
|
||||||
.van-switch {
|
.van-switch {
|
||||||
display: inline-block;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
box-sizing: content-box;
|
||||||
width: @switch-width;
|
width: @switch-width;
|
||||||
height: @switch-height;
|
height: @switch-height;
|
||||||
|
background-color: @switch-background-color;
|
||||||
border: @switch-border;
|
border: @switch-border;
|
||||||
border-radius: @switch-node-size;
|
border-radius: @switch-node-size;
|
||||||
box-sizing: content-box;
|
|
||||||
background-color: @switch-background-color;
|
|
||||||
transition: background-color @switch-transition-duration;
|
transition: background-color @switch-transition-duration;
|
||||||
|
|
||||||
&__node {
|
&__node {
|
||||||
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
position: absolute;
|
z-index: @switch-node-z-index;
|
||||||
border-radius: 100%;
|
|
||||||
width: @switch-node-size;
|
width: @switch-node-size;
|
||||||
height: @switch-node-size;
|
height: @switch-node-size;
|
||||||
z-index: @switch-node-z-index;
|
|
||||||
transition: @switch-transition-duration;
|
|
||||||
box-shadow: @switch-node-box-shadow;
|
|
||||||
background-color: @switch-node-background-color;
|
background-color: @switch-node-background-color;
|
||||||
|
border-radius: 100%;
|
||||||
|
box-shadow: @switch-node-box-shadow;
|
||||||
|
transition: @switch-transition-duration;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__loading {
|
&__loading {
|
||||||
|
position: absolute !important;
|
||||||
top: 25%;
|
top: 25%;
|
||||||
left: 25%;
|
left: 25%;
|
||||||
position: absolute !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&--on {
|
&--on {
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&--inactive {
|
&--inactive {
|
||||||
height: 0px;
|
height: 0;
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,37 +5,37 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.van-tabbar-item {
|
.van-tabbar-item {
|
||||||
color: @gray-darker;
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
line-height: 1;
|
|
||||||
font-size: 12px;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
height: 100%;
|
||||||
|
color: @gray-darker;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 1;
|
||||||
|
|
||||||
&__icon {
|
&__icon {
|
||||||
font-size: 18px;
|
|
||||||
margin-bottom: 5px;
|
|
||||||
position: relative;
|
position: relative;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
font-size: 18px;
|
||||||
|
|
||||||
&--dot {
|
&--dot {
|
||||||
&::after {
|
&::after {
|
||||||
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: -8px;
|
right: -8px;
|
||||||
width: 8px;
|
width: 8px;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
content: ' ';
|
|
||||||
position: absolute;
|
|
||||||
border-radius: 100%;
|
|
||||||
background-color: @red;
|
background-color: @red;
|
||||||
|
border-radius: 100%;
|
||||||
|
content: ' ';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
image {
|
image {
|
||||||
|
display: block;
|
||||||
width: 30px;
|
width: 30px;
|
||||||
height: 18px;
|
height: 18px;
|
||||||
display: block;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -49,8 +49,8 @@
|
|||||||
height: @tabs-card-height;
|
height: @tabs-card-height;
|
||||||
|
|
||||||
.van-tab {
|
.van-tab {
|
||||||
line-height: @tabs-card-height;
|
|
||||||
color: @red;
|
color: @red;
|
||||||
|
line-height: @tabs-card-height;
|
||||||
border-right: 1px solid @red;
|
border-right: 1px solid @red;
|
||||||
|
|
||||||
&:last-child {
|
&:last-child {
|
||||||
@ -84,8 +84,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&--card {
|
&--card {
|
||||||
padding-top: @tabs-card-height;
|
|
||||||
margin: 0 15px;
|
margin: 0 15px;
|
||||||
|
padding-top: @tabs-card-height;
|
||||||
|
|
||||||
.van-tabs__wrap {
|
.van-tabs__wrap {
|
||||||
height: @tabs-card-height;
|
height: @tabs-card-height;
|
||||||
@ -103,19 +103,19 @@
|
|||||||
|
|
||||||
.van-tab {
|
.van-tab {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
flex: 1;
|
||||||
|
box-sizing: border-box;
|
||||||
min-width: 0; /* hack for flex ellipsis */
|
min-width: 0; /* hack for flex ellipsis */
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
|
color: @gray-darker;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: @tabs-line-height;
|
line-height: @tabs-line-height;
|
||||||
color: @gray-darker;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
box-sizing: border-box;
|
|
||||||
flex: 1;
|
|
||||||
|
|
||||||
&--active {
|
&--active {
|
||||||
font-weight: 500;
|
|
||||||
color: @text-color;
|
color: @text-color;
|
||||||
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--disabled {
|
&--disabled {
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
@import '../common/style/var.less';
|
@import '../common/style/var.less';
|
||||||
|
|
||||||
.van-tag {
|
.van-tag {
|
||||||
|
display: inline-block;
|
||||||
|
padding: .2em .5em;
|
||||||
color: @white;
|
color: @white;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
padding: .2em .5em;
|
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
border-radius: .2em;
|
border-radius: .2em;
|
||||||
display: inline-block;
|
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
border-color: currentColor;
|
border-color: currentColor;
|
||||||
|
@ -2,39 +2,39 @@
|
|||||||
|
|
||||||
.van-toast {
|
.van-toast {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
box-sizing: content-box;
|
||||||
color: @toast-text-color;
|
color: @toast-text-color;
|
||||||
font-size: @toast-font-size;
|
font-size: @toast-font-size;
|
||||||
line-height: @toast-line-height;
|
line-height: @toast-line-height;
|
||||||
border-radius: @toast-border-radius;
|
|
||||||
word-break: break-all;
|
|
||||||
align-items: center;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
box-sizing: content-box;
|
|
||||||
background-color: @toast-background-color;
|
|
||||||
|
|
||||||
// allow newline charactor
|
// allow newline charactor
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
|
word-break: break-all;
|
||||||
|
background-color: @toast-background-color;
|
||||||
|
border-radius: @toast-border-radius;
|
||||||
|
|
||||||
&__container {
|
&__container {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
max-width: @toast-max-width;
|
|
||||||
// hack for avoid max-width when use left & fixed
|
// hack for avoid max-width when use left & fixed
|
||||||
width: fit-content;
|
width: fit-content;
|
||||||
|
max-width: @toast-max-width;
|
||||||
transform: translate(-50%, -50%);
|
transform: translate(-50%, -50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
&--text {
|
&--text {
|
||||||
padding: @toast-text-padding;
|
|
||||||
min-width: @toast-text-min-width;
|
min-width: @toast-text-min-width;
|
||||||
|
padding: @toast-text-padding;
|
||||||
}
|
}
|
||||||
|
|
||||||
&--icon {
|
&--icon {
|
||||||
width: @toast-default-width;
|
width: @toast-default-width;
|
||||||
padding: @toast-default-padding;
|
|
||||||
min-height: @toast-default-min-height;
|
min-height: @toast-default-min-height;
|
||||||
|
padding: @toast-default-padding;
|
||||||
|
|
||||||
.van-toast__icon {
|
.van-toast__icon {
|
||||||
font-size: @toast-icon-size;
|
font-size: @toast-icon-size;
|
||||||
|
@ -25,26 +25,26 @@
|
|||||||
|
|
||||||
.van-fade-up-enter,
|
.van-fade-up-enter,
|
||||||
.van-fade-up-leave-to {
|
.van-fade-up-leave-to {
|
||||||
opacity: 0;
|
|
||||||
transform: translate3d(0, 100%, 0);
|
transform: translate3d(0, 100%, 0);
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.van-fade-down-enter,
|
.van-fade-down-enter,
|
||||||
.van-fade-down-leave-to {
|
.van-fade-down-leave-to {
|
||||||
opacity: 0;
|
|
||||||
transform: translate3d(0, -100%, 0);
|
transform: translate3d(0, -100%, 0);
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.van-fade-left-enter,
|
.van-fade-left-enter,
|
||||||
.van-fade-left-leave-to {
|
.van-fade-left-leave-to {
|
||||||
opacity: 0;
|
|
||||||
transform: translate3d(-100%, 0, 0);
|
transform: translate3d(-100%, 0, 0);
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.van-fade-right-enter,
|
.van-fade-right-enter,
|
||||||
.van-fade-right-leave-to {
|
.van-fade-right-leave-to {
|
||||||
opacity: 0;
|
|
||||||
transform: translate3d(100%, 0, 0);
|
transform: translate3d(100%, 0, 0);
|
||||||
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.van-slide-up-enter-active,
|
.van-slide-up-enter-active,
|
||||||
|
@ -41,11 +41,11 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&__content {
|
&__content {
|
||||||
width: 65%;
|
|
||||||
padding-left: 15px;
|
|
||||||
margin-left: 35%;
|
|
||||||
background-color: @white;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
width: 65%;
|
||||||
|
margin-left: 35%;
|
||||||
|
padding-left: 15px;
|
||||||
|
background-color: @white;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__item {
|
&__item {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user