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 |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/styles/elementUI.scss b/src/styles/elementUI.scss
index 30ea08a..e1d1401 100644
--- a/src/styles/elementUI.scss
+++ b/src/styles/elementUI.scss
@@ -12,17 +12,19 @@
 
 .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-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;
 }

--
Gitblit v1.9.3