From 25570a9ecd9b10a865fd7ce2614410814aaf52eb Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期五, 28 三月 2025 17:54:40 +0800 Subject: [PATCH] 修复网格样式中删除一组数据后,表格没有联动的问题 --- src/styles/elementUI.scss | 23 +++++++++++++++-------- 1 files changed, 15 insertions(+), 8 deletions(-) diff --git a/src/styles/elementUI.scss b/src/styles/elementUI.scss index 813ba05..e1d1401 100644 --- a/src/styles/elementUI.scss +++ b/src/styles/elementUI.scss @@ -2,12 +2,8 @@ // --el-text-color-regular: #ffffff; } -.el-form-item { - margin-bottom: 0px; -} - .el-form-item__label { - color: white; + color: rgba(255, 255, 255, 0.849) !important; } // .el-radio { @@ -16,12 +12,23 @@ .el-button-custom { --el-button-bg-color: var(--bg-color); - --el-button-hover-text-color: var(--select_color); - --el-button-hover-bg-color: var(--bg-color); --el-button-border-color: var(--font-color); + // --el-button-hover-text-color: var(--select_color); + // --el-button-hover-bg-color: var(--bg-color); + --el-button-hover-bg-color: var(--select_color); + --el-button-active-border-color: transparent; +} + +.el-button-custom-light { + --el-button-bg-color: var(--font-color); + --el-button-text-color: var(--bg-color); + // --el-button-hover-text-color: var(--bg-color); + // --el-button-hover-bg-color: var(--font-color); + --el-button-hover-bg-color: var(--select_color); + --el-button-border-color: var(--bg-color); --el-button-active-border-color: transparent; } .el-button-custom:focus-visible { outline: 0px solid var(--el-button-outline-color); -} \ No newline at end of file +} -- Gitblit v1.9.3