From f80eb8c816b0dcf4d3cc3a209dbcba02cefc389d Mon Sep 17 00:00:00 2001 From: Abdul Zahid Date: Fri, 3 Apr 2026 18:34:06 +0200 Subject: [PATCH] Do not apply 'Elastic UI Numeric' font to all EUI Portals. --- .../plugins/shared/lens/public/expression_renderer_styles.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x-pack/platform/plugins/shared/lens/public/expression_renderer_styles.tsx b/x-pack/platform/plugins/shared/lens/public/expression_renderer_styles.tsx index f4789106bb3dd..363124e0e5c7f 100644 --- a/x-pack/platform/plugins/shared/lens/public/expression_renderer_styles.tsx +++ b/x-pack/platform/plugins/shared/lens/public/expression_renderer_styles.tsx @@ -40,8 +40,7 @@ export const lnsExpressionRendererStyle = (euiThemeContext: UseEuiTheme) => { * These elements are rendered outside the Lens DOM tree and need global targeting. */ export const lnsGlobalChartStyles = (euiThemeContext: UseEuiTheme) => css` - [id^='echTooltipPortal'], - [data-euiportal='true'] { + [id^='echTooltipPortal'] { ${lnsNumericFontStyles(euiThemeContext)} } `;