Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-21 11:29:20 +08:00

style: 更改深蓝色主题样式风格

This commit is contained in:
pany 2022-10-24 11:02:23 +08:00
parent ec29772bdc
commit 4af9112121
2 changed files with 10 additions and 8 deletions

View File

@ -1,15 +1,15 @@
/* 查阅所有变量https://github.com/element-plus/element-plus/blob/dev/packages/theme-chalk/src/common/var.scss */
/* 查阅所有可自定义的 Element Plus CSS 变量https://github.com/element-plus/element-plus/blob/dev/packages/theme-chalk/src/common/var.scss */
html.dark-blue {
/* color */
--el-color-primary: #01efb7bb;
--el-color-success: #01efb7bb;
/* text-color */
--el-text-color-primary: #ffffffee;
--el-text-color-regular: #ffffffee;
--el-text-color-secondary: #ffffffee;
--el-text-color-placeholder: #ffffffee;
--el-text-color-disabled: #ffffff55;
--el-text-color-primary: rgba(255, 255, 255, 0.8);
--el-text-color-regular: rgba(255, 255, 255, 0.8);
--el-text-color-secondary: rgba(255, 255, 255, 0.8);
--el-text-color-placeholder: rgba(255, 255, 255, 0.8);
--el-text-color-disabled: rgba(255, 255, 255, 0.3);
/* border-color */
--el-border-color: #01efb755;
--el-border-color-light: #01efb755;
@ -21,4 +21,6 @@ html.dark-blue {
/* bg-color */
--el-bg-color: #021633;
--el-bg-color-overlay: #021633;
/** mask */
--el-mask-color: rgba(0, 0, 0, 0.5);
}

View File

@ -155,10 +155,10 @@ getTableData()
<el-button type="danger" :icon="Delete">批量删除</el-button>
</div>
<div>
<el-tooltip content="下载" effect="light">
<el-tooltip content="下载">
<el-button type="primary" :icon="Download" circle />
</el-tooltip>
<el-tooltip content="刷新表格" effect="light">
<el-tooltip content="刷新表格">
<el-button type="primary" :icon="RefreshRight" circle @click="handRefresh" />
</el-tooltip>
</div>