From 638aee1c3fc7935821a29959228518203e424633 Mon Sep 17 00:00:00 2001 From: lijisanxiong <1518062161@qq.com> Date: Tue, 14 Jan 2025 19:25:41 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=20=E4=BF=AE=E5=A4=8D=E8=A1=A8=E6=A0=BC?= =?UTF-8?q?=E8=A1=8C=E5=86=85=E8=87=AA=E5=8A=A8=E5=A1=AB=E5=85=85=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E6=97=A0=E6=B3=95=E5=B1=85=E4=B8=AD=E5=AF=B9=E9=BD=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ .../autocomplete/ibiz-autocomplete/ibiz-autocomplete.scss | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16b2bc53f..e486739db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ ## [Unreleased] +### Fixed + +- 修复表格行内自动填充样式无法居中对齐 + ## [0.7.38-alpha.48] - 2025-01-10 ### Fixed diff --git a/src/editor/autocomplete/ibiz-autocomplete/ibiz-autocomplete.scss b/src/editor/autocomplete/ibiz-autocomplete/ibiz-autocomplete.scss index 4c4b24851..42400b7dd 100644 --- a/src/editor/autocomplete/ibiz-autocomplete/ibiz-autocomplete.scss +++ b/src/editor/autocomplete/ibiz-autocomplete/ibiz-autocomplete.scss @@ -18,6 +18,11 @@ line-height: getCssVar(editor, default, line-height); color: getCssVar('form-item', 'readonly-color'); } + + // 适配在表格行内样式与其它编辑器不能居中对齐 + .el-autocomplete { + vertical-align: middle; + } } // 表单下的时间选择器默认显示,悬浮上去显示编辑器 -- Gitee