This is an automated email from the ASF dual-hosted git repository. maximebeauchemin pushed a commit to branch template_less in repository https://gitbox.apache.org/repos/asf/superset.git
commit 1ca0f342109380f39dc6bf3f260c2b796620535c Author: Maxime Beauchemin <[email protected]> AuthorDate: Wed Mar 19 17:02:57 2025 -0700 more button background --- superset-frontend/src/SqlLab/components/SqlEditor/index.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/superset-frontend/src/SqlLab/components/SqlEditor/index.tsx b/superset-frontend/src/SqlLab/components/SqlEditor/index.tsx index f5a4b5e8b4..974daec645 100644 --- a/superset-frontend/src/SqlLab/components/SqlEditor/index.tsx +++ b/superset-frontend/src/SqlLab/components/SqlEditor/index.tsx @@ -872,7 +872,12 @@ const SqlEditor: FC<Props> = ({ dropdownRender={() => renderDropdown()} trigger={['click']} > - <Button buttonSize="xsmall" type="link" showMarginRight={false}> + <Button + buttonSize="xsmall" + type="link" + showMarginRight={false} + buttonStyle="link" + > <Icons.EllipsisOutlined /> </Button> </Dropdown>
