1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-03-17 03:04:46 +08:00

feat: 黑色样式修改

This commit is contained in:
wangdan 2023-02-14 15:00:03 +08:00 committed by wangdan-fit2cloud
parent 55b5409cb1
commit ccc01c3c3a
3 changed files with 9 additions and 3 deletions

View File

@ -46,6 +46,9 @@ html.dark {
--el-table-border: var(--panel-border); --el-table-border: var(--panel-border);
--el-table-border-color: rgb(64, 67, 67); --el-table-border-color: rgb(64, 67, 67);
} }
.el-message-box {
--el-messagebox-title-color: #999999;
}
.el-alert--info { .el-alert--info {
--el-alert-bg-color: rgb(56, 59, 59); --el-alert-bg-color: rgb(56, 59, 59);
@ -57,7 +60,7 @@ html.dark {
} }
.el-pagination { .el-pagination {
--el-pagination-button-color: #999999; --el-pagination-button-color: #999999;
} }
// * wangEditor // * wangEditor
@ -78,6 +81,9 @@ html.dark {
background-color: #ffffff; background-color: #ffffff;
box-shadow: 0 0 0 1px #dcdfe6 inset; box-shadow: 0 0 0 1px #dcdfe6 inset;
} }
.el-input__inner {
color: #606266;
}
} }
} }

View File

@ -357,7 +357,7 @@ onMounted(() => {
background: none !important; background: none !important;
box-shadow: none !important; box-shadow: none !important;
border-radius: 0 !important; border-radius: 0 !important;
border-top: 1px solid #f2f2f2; border-bottom: 1px solid #dcdfe6;
} }
} }

View File

@ -37,7 +37,7 @@ export default defineConfig(({ mode }: ConfigEnv): UserConfig => {
open: viteEnv.VITE_OPEN, open: viteEnv.VITE_OPEN,
proxy: { proxy: {
'/api/v1': { '/api/v1': {
target: 'http://localhost:9999/', target: 'http://172.16.10.181:9999/',
changeOrigin: true, changeOrigin: true,
}, },
}, },