From 311b6bbaa592bc90ea97d69cc33b8f8ed7634855 Mon Sep 17 00:00:00 2001 From: Cano1997 <1978141412@qq.com> Date: Tue, 14 Oct 2025 20:07:11 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=87=AA=E5=AE=9A=E4=B9=89=E4=B8=BB?= =?UTF-8?q?=E9=A2=98=E7=BB=84=E4=BB=B6=E8=AF=86=E5=88=AB=E9=A2=9C=E8=89=B2?= =?UTF-8?q?=E4=B8=BB=E9=A2=98=E6=8F=92=E4=BB=B6=EF=BC=8C=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E6=8F=92=E4=BB=B6=E4=B8=BB=E9=A2=98=E5=88=87=E6=8D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ src/control/grid/grid/grid.scss | 2 +- src/panel-component/app-switch/app-switch.scss | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7534851d..3b9ac07a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ - 自定义主题组件识别颜色主题插件,支持插件主题切换 +### Fixed + +- 表格行编辑输入框、应用切换器样式适配主题 + ## [0.7.41-alpha.31] - 2025-10-11 ### Added diff --git a/src/control/grid/grid/grid.scss b/src/control/grid/grid/grid.scss index 5d4712e8..de00f046 100644 --- a/src/control/grid/grid/grid.scss +++ b/src/control/grid/grid/grid.scss @@ -232,7 +232,7 @@ $control-grid-footer: ( } .el-input__wrapper, .el-textarea__inner, .el-date-editor { - --el-input-bg-color: #{getCssVar(color, white)}; + --el-input-bg-color: #{getCssVar(color, bg, 1)}; } } } diff --git a/src/panel-component/app-switch/app-switch.scss b/src/panel-component/app-switch/app-switch.scss index 073d294c..dd1fcda8 100644 --- a/src/panel-component/app-switch/app-switch.scss +++ b/src/panel-component/app-switch/app-switch.scss @@ -39,6 +39,7 @@ $app-switch: ( white-space: nowrap; @include when('active') { + color: getCssVar(color, primary, active, text) !important; background-color: getCssVar(color, primary, active) !important; } } -- Gitee