diff --git a/src/components/base/icon/index.vue b/src/components/base/icon/index.vue index 1dca9eca..107b130d 100644 --- a/src/components/base/icon/index.vue +++ b/src/components/base/icon/index.vue @@ -1,5 +1,5 @@ @@ -15,10 +15,6 @@ const props = defineProps({ type: String, default: '', }, - hoverColor: { - type: String, - default: '', - }, size: { type: String, default: '', @@ -50,8 +46,5 @@ i.iconfont { &:hover { opacity: 0.8; } - &.hover:hover { - color: inherit; - } } diff --git a/src/components/common/upload/index.scss b/src/components/common/upload/index.scss index e07b29df..10b85666 100644 --- a/src/components/common/upload/index.scss +++ b/src/components/common/upload/index.scss @@ -6,6 +6,11 @@ .el-tree { --el-tree-node-content-height: 40px; } + .category-oprate { + .icon:hover { + color: $cr-primary; + } + } } .right-content { position: relative; diff --git a/src/components/common/upload/index.vue b/src/components/common/upload/index.vue index 5e9263d3..4eb044e1 100644 --- a/src/components/common/upload/index.vue +++ b/src/components/common/upload/index.vue @@ -26,10 +26,10 @@ diff --git a/src/styles/index.scss b/src/styles/index.scss index 5b4bfd86..e490b3dc 100644 --- a/src/styles/index.scss +++ b/src/styles/index.scss @@ -73,8 +73,6 @@ div:focus { // 全局form表单样式 :root { --el-font-size-base: 12px; - // input numberbox 颜色值整 - --el-fill-color-light: #fff; } .el-form { --el-form-label-font-size: var(--el-font-size-base); @@ -102,10 +100,12 @@ div:focus { // numberbox 数字输入框样式调整 .el-input-number { &__decrease { + background-color: #fff; transition: all 0.3s ease-in-out; opacity: 0; } &__increase { + background-color: #fff; transition: all 0.3s ease-in-out; opacity: 0; }