diff --git a/src/style/element_visiable.scss b/src/style/element_visiable.scss index 71200ab..f4e768d 100644 --- a/src/style/element_visiable.scss +++ b/src/style/element_visiable.scss @@ -118,6 +118,44 @@ body:not(.login-light-mode) { color: var(--tech-text); } + .el-button:not(.el-button--primary):not(.el-button--success):not(.el-button--warning):not(.el-button--danger):not(.el-button--info):not(.is-link):not(.is-text) { + --el-button-bg-color: rgba(2, 8, 23, 0.72); + --el-button-border-color: rgba(0, 212, 255, 0.42); + --el-button-text-color: #e9fbff; + --el-button-hover-bg-color: rgba(0, 212, 255, 0.18); + --el-button-hover-border-color: rgba(0, 212, 255, 0.72); + --el-button-hover-text-color: #ffffff; + --el-button-active-bg-color: rgba(0, 212, 255, 0.24); + --el-button-active-border-color: rgba(0, 212, 255, 0.82); + --el-button-active-text-color: #ffffff; + --el-button-disabled-bg-color: rgba(15, 23, 42, 0.48); + --el-button-disabled-border-color: rgba(0, 212, 255, 0.16); + --el-button-disabled-text-color: rgba(220, 243, 255, 0.5); + + color: var(--el-button-text-color) !important; + font-weight: 700; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.82); + background: var(--el-button-bg-color) !important; + border-color: var(--el-button-border-color) !important; + + .el-icon { + color: currentColor; + } + + &:hover, + &:focus { + color: var(--el-button-hover-text-color) !important; + background: var(--el-button-hover-bg-color) !important; + border-color: var(--el-button-hover-border-color) !important; + } + + &:active { + color: var(--el-button-active-text-color) !important; + background: var(--el-button-active-bg-color) !important; + border-color: var(--el-button-active-border-color) !important; + } + } + .el-input__inner::placeholder, .el-textarea__inner::placeholder { color: rgba(220, 243, 255, 0.56); diff --git a/src/view/largeScreen2/index.vue b/src/view/largeScreen2/index.vue index d75e54e..a8f04db 100644 --- a/src/view/largeScreen2/index.vue +++ b/src/view/largeScreen2/index.vue @@ -4,7 +4,7 @@