This is an automated email from the ASF dual-hosted git repository.
diegopucci pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new ac2914486fe fix(Select): select all buttons to inherit font (#38313)
ac2914486fe is described below
commit ac2914486fee07eb9574aced4a22e24849dcd804
Author: Mehmet Salih Yavuz <[email protected]>
AuthorDate: Mon Mar 2 11:12:06 2026 +0300
fix(Select): select all buttons to inherit font (#38313)
---
.../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 eedbd1fd3b6..47dc0f297a7 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;
+ }
`}
`;