This is an automated email from the ASF dual-hosted git repository. msyavuz pushed a commit to branch msyavuz/fix/select-all-fonts in repository https://gitbox.apache.org/repos/asf/superset.git
commit 41e067a7691aa29f92017fd176a6284e98ca1300 Author: Mehmet Salih Yavuz <[email protected]> AuthorDate: Sun Mar 1 20:33:38 2026 +0300 fix(Select): select all buttons inherit font --- .../packages/superset-ui-core/src/components/Select/styles.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/superset-frontend/packages/superset-ui-core/src/components/Select/styles.tsx b/superset-frontend/packages/superset-ui-core/src/components/Select/styles.tsx index eedbd1fd3b..47dc0f297a 100644 --- a/superset-frontend/packages/superset-ui-core/src/components/Select/styles.tsx +++ b/superset-frontend/packages/superset-ui-core/src/components/Select/styles.tsx @@ -143,5 +143,8 @@ export const StyledBulkActionsContainer = styled(Flex)` padding: ${theme.sizeUnit}px; border-top: 1px solid ${theme.colorSplit}; gap: ${theme.sizeUnit * 2}px; + & .superset-button { + font-family: inherit; + } `} `;
