From f425ef0d689a312d0600a55097ad260cadfa87fc Mon Sep 17 00:00:00 2001 From: hejianhao <15708179461@qq.com> Date: 星期三, 02 四月 2025 14:29:09 +0800 Subject: [PATCH] 系统管理 --- src/App.vue | 64 +++++++++++++++++++++++-------- 1 files changed, 47 insertions(+), 17 deletions(-) diff --git a/src/App.vue b/src/App.vue index 525d7a1..81b1148 100644 --- a/src/App.vue +++ b/src/App.vue @@ -94,24 +94,54 @@ } } -.select-member { - .el-dialog { - border-radius: 16px 16px 6px 6px; +.el-dialog { + border-radius: 16px 16px 6px 6px; - .el-dialog__header { - font-family: 'Source Han Sans CN Bold Bold'; - font-weight: bold; - font-size: 20px; - line-height: 20px; - color: #222222; - padding: 39px 0 36px 30px; - border-bottom: 1px solid rgba(238, 238, 238, 1); - } - - .el-dialog__body { - padding: 15px 24px 33px 14px; - overflow: hidden; - } + .el-dialog__header { + font-family: 'Source Han Sans CN Bold Bold'; + font-weight: bold; + font-size: 20px; + line-height: 20px; + color: #222222; + padding: 39px 0 36px 30px; + border-bottom: 1px solid rgba(238, 238, 238, 1); } + + .el-dialog__body { + padding: 15px 24px 33px 14px; + overflow: hidden; + } +} + +.el-input__inner:focus, +.el-select .el-input__inner:focus, +.el-select .el-input.is-focus .el-input__inner { + border-color: #009688; +} + +.el-switch.is-checked .el-switch__core { + background-color: #009688; + border-color: #009688; +} + +.select-member-footer { + display: flex; + justify-content: center; + + button { + width: 150px; + } +} + +.el-tabs__item.is-active { + color: #009688; +} + +.el-tabs__item:hover { + color: #009688; +} + +.el-tabs__active-bar { + background-color: #009688; } </style> -- Gitblit v1.7.1