From 7ba76a85f4e2560b5410d9b2e1e09c90c84b4bf4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Geid=C5=8D?= <60598000+geido@users.noreply.github.com> Date: Mon, 29 Sep 2025 13:37:30 +0300 Subject: [PATCH] fix: AceEditor Autocomplete Highlight (#35316) (cherry picked from commit 90f281f5858e596bee02bd170b2c0e337b9a23a5) --- .../src/SqlLab/components/AceEditorWrapper/index.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx b/superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx index 23931a593ea..5d814cf5657 100644 --- a/superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx +++ b/superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx @@ -193,6 +193,11 @@ const AceEditorWrapper = ({ width: ${theme.sizeUnit * 130}px !important; } + .ace_completion-highlight { + color: ${theme.colorPrimaryText} !important; + background-color: ${theme.colorPrimaryBgHover}; + } + .ace_tooltip { max-width: ${SQL_EDITOR_LEFTBAR_WIDTH}px; }