🐛 fix(TableDesigner): 修复深色主题下 SQL 变更确认弹窗文字不可见

- 将 <pre> 的硬编码浅色背景/边框替换为 darkMode 适配的颜色值
- refs #251
This commit is contained in:
杨国锋
2026-03-18 20:23:38 +08:00
parent 5b6403f266
commit cc7ef12029
2 changed files with 2 additions and 2 deletions

View File

@@ -2676,7 +2676,7 @@ END;`;
cancelText="取消"
>
<div style={{ maxHeight: '400px', overflow: 'auto' }}>
<pre style={{ background: '#f5f5f5', padding: '10px', borderRadius: '4px', border: '1px solid #eee', whiteSpace: 'pre-wrap' }}>
<pre style={{ background: darkMode ? '#1e1e1e' : '#f5f5f5', color: darkMode ? '#d4d4d4' : 'inherit', padding: '10px', borderRadius: '4px', border: darkMode ? '1px solid #333' : '1px solid #eee', whiteSpace: 'pre-wrap' }}>
{previewSql}
</pre>
</div>