This is an automated email from the ASF dual-hosted git repository. hainenber pushed a commit to branch fix/fix-invisible-text-tooltip-in-calendar-heatmap in repository https://gitbox.apache.org/repos/asf/superset.git
commit 92bac0d83334d172984837c56faf72924f09c1f6 Author: hainenber <[email protected]> AuthorDate: Mon Feb 16 18:51:28 2026 +0700 fix(plugin/cal-heatmap): properly color tooltip's text for both dark/light theme Signed-off-by: hainenber <[email protected]> --- .../plugins/legacy-plugin-chart-calendar/src/ReactCalendar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/ReactCalendar.tsx b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/ReactCalendar.tsx index a14bc9b4a22..a40b0d3d216 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-calendar/src/ReactCalendar.tsx +++ b/superset-frontend/plugins/legacy-plugin-chart-calendar/src/ReactCalendar.tsx @@ -46,7 +46,7 @@ const Calendar = ({ className, ...otherProps }: CalendarWrapperProps) => { line-height: 1; padding: ${theme.sizeUnit * 3}px; background: ${theme.colorBgElevated}; - color: ${theme.colorTextLightSolid}; + color: ${theme.colorTextBase}; border-radius: 4px; pointer-events: none; z-index: 1000;
