From b8b2bdedf9bca608cbf0c4f0992be30877de300d Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Wed, 8 Apr 2026 13:09:14 -0700 Subject: [PATCH] fix(ace-editor): style bracket matching to blend with theme (#39182) Co-authored-by: Claude Opus 4.6 --- .../superset-ui-core/src/components/AsyncAceEditor/index.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/superset-frontend/packages/superset-ui-core/src/components/AsyncAceEditor/index.tsx b/superset-frontend/packages/superset-ui-core/src/components/AsyncAceEditor/index.tsx index 89ec5aa7caf..19c7b46c675 100644 --- a/superset-frontend/packages/superset-ui-core/src/components/AsyncAceEditor/index.tsx +++ b/superset-frontend/packages/superset-ui-core/src/components/AsyncAceEditor/index.tsx @@ -319,6 +319,11 @@ export function AsyncAceEditor( opacity: 0.5; } + /* Style bracket matching to blend with theme */ + .ace_editor .ace_bracket { + border-color: ${token.colorPrimaryBorderHover} !important; + } + /* Adjust cursor color */ .ace_editor .ace_cursor { color: ${token.colorPrimaryText} !important;