fix: 修复因使用弃用的方法'>>>',导致的eslint报警提示

This commit is contained in:
刘洪洪
2023-03-02 18:16:38 +08:00
parent e29fc1244c
commit 04062195e2
2 changed files with 9 additions and 9 deletions

View File

@@ -148,7 +148,7 @@ export default {
align-items: center; align-items: center;
} }
>>>.el-input__inner { :deep .el-input__inner {
background-color: #0B325C !important; background-color: #0B325C !important;
border: none; border: none;
border-radius: 0px; border-radius: 0px;
@@ -156,10 +156,10 @@ export default {
font-size: 14px; font-size: 14px;
line-height: 14px; line-height: 14px;
} }
>>>.el-input__inner:hover { :deep .el-input__inner:hover {
border-color: #295688; border-color: #295688;
} }
>>>.el-input__inner:focus { :deep .el-input__inner:focus {
border-color: #295688; border-color: #295688;
} }
.el-button--primary:hover, .el-button--primary:focus, .el-button--primary:active { .el-button--primary:hover, .el-button--primary:focus, .el-button--primary:active {
@@ -167,10 +167,10 @@ export default {
border-color: #21B4ED; border-color: #21B4ED;
color: #FFFFFF; color: #FFFFFF;
} }
>>>.el-loading-mask { :deep .el-loading-mask {
background-color: transparent; background-color: transparent;
} }
>>>input { :deep input {
-webkit-text-fill-color: rgba(231,234,237, .8) !important; -webkit-text-fill-color: rgba(231,234,237, .8) !important;
transition: background-color 500000000000000000s ease-in-out 0s !important; transition: background-color 500000000000000000s ease-in-out 0s !important;
caret-color: #fff ; caret-color: #fff ;
@@ -205,14 +205,14 @@ export default {
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
>>>.el-form-item { :deep .el-form-item {
width: 334px; width: 334px;
margin-bottom: 25px; margin-bottom: 25px;
} }
>>>.el-input__prefix { :deep .el-input__prefix {
color: #6DBBFF; color: #6DBBFF;
} }
>>>.el-input__prefix i { :deep .el-input__prefix i {
width: 17px; width: 17px;
font-size: 17px; font-size: 17px;
} }

View File

@@ -73,7 +73,7 @@
height: 100%; height: 100%;
width: calc(100% - 32px); width: calc(100% - 32px);
background: #fff; //盖住fixed产生的阴影 background: #fff; //盖住fixed产生的阴影
::v-deep .is-leaf { :deep .is-leaf {
color: #1b2e3b; color: #1b2e3b;
background: #ebeef5; background: #ebeef5;
} }