update 实现修改密码. 并对一些用户填写的格式进行了验证
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
@import './lib/container.less';
|
||||
@import './lib/align.less';
|
||||
@import './lib/font-size.less';
|
||||
@import './lib/text-color.less';
|
||||
@import './lib/margin.less';
|
||||
@import './lib/width-height.less';
|
||||
@import './lib/scrollbar.less';
|
||||
@@ -15,6 +16,7 @@
|
||||
.yo-nav-theme--light {
|
||||
.light();
|
||||
}
|
||||
@import './lib/button.less';
|
||||
@import './lib/card.less';
|
||||
@import './lib/table.less';
|
||||
@import './lib/list.less';
|
||||
|
||||
5
Web/src/assets/style/lib/button.less
Normal file
5
Web/src/assets/style/lib/button.less
Normal file
@@ -0,0 +1,5 @@
|
||||
@import (reference) '~@/assets/style/extend.less';
|
||||
@btn-default-border: @border-color-split;
|
||||
.ant-btn {
|
||||
box-shadow: none;
|
||||
}
|
||||
@@ -4,25 +4,17 @@
|
||||
width: 660px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
h1,
|
||||
.h1,
|
||||
h2,
|
||||
.h2,
|
||||
h3,
|
||||
.h3,
|
||||
h4,
|
||||
.h4,
|
||||
h5,
|
||||
.h5,
|
||||
h6,
|
||||
.h6 {
|
||||
color: darken(@white, 40%);
|
||||
}
|
||||
h3,
|
||||
.h3 {
|
||||
font-size: 16px;
|
||||
}
|
||||
h4,
|
||||
.h4 {
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,8 @@
|
||||
@import (reference) '~@/assets/style/extend.less';
|
||||
.ant-list-bordered {
|
||||
border-color: @border-color-split;
|
||||
background-color: @white;
|
||||
}
|
||||
.yo-list {
|
||||
&-content--h {
|
||||
display: flex;
|
||||
|
||||
32
Web/src/assets/style/lib/text-color.less
Normal file
32
Web/src/assets/style/lib/text-color.less
Normal file
@@ -0,0 +1,32 @@
|
||||
@import (reference) '~@/assets/style/extend.less';
|
||||
.text-primary {
|
||||
color: @primary-color;
|
||||
}
|
||||
.text-info {
|
||||
color: @info-color;
|
||||
}
|
||||
.text-success {
|
||||
color: @success-color;
|
||||
}
|
||||
.text-processing {
|
||||
color: @processing-color;
|
||||
}
|
||||
.text-error,
|
||||
.text-danger {
|
||||
color: @error-color;
|
||||
}
|
||||
.text-highlight {
|
||||
color: @highlight-color;
|
||||
}
|
||||
.text-warning {
|
||||
color: @warning-color;
|
||||
}
|
||||
.text-normal {
|
||||
color: @normal-color;
|
||||
}
|
||||
.text-white {
|
||||
color: @white;
|
||||
}
|
||||
.text-black {
|
||||
color: @black;
|
||||
}
|
||||
Reference in New Issue
Block a user