From 5cf25f4b7f617b1d6a94f7dbb756460cc6ccb047 Mon Sep 17 00:00:00 2001 From: Seyaji <67058118+Seyaji@users.noreply.github.com> Date: Fri, 17 Jun 2022 15:59:44 +0100 Subject: [PATCH] Log Panel: Improve log row hover contrast and visibility (#50908) --- packages/grafana-ui/src/components/Logs/getLogRowStyles.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/components/Logs/getLogRowStyles.ts b/packages/grafana-ui/src/components/Logs/getLogRowStyles.ts index dd62a125e53..e4909bd1527 100644 --- a/packages/grafana-ui/src/components/Logs/getLogRowStyles.ts +++ b/packages/grafana-ui/src/components/Logs/getLogRowStyles.ts @@ -6,7 +6,7 @@ import { styleMixins, stylesFactory } from '../../themes'; export const getLogRowStyles = stylesFactory((theme: GrafanaTheme2, logLevel?: LogLevel) => { let logColor = theme.isLight ? theme.v1.palette.gray5 : theme.v1.palette.gray2; - const hoverBgColor = styleMixins.hoverColor(theme.colors.background.primary, theme); + const hoverBgColor = styleMixins.hoverColor(theme.colors.background.secondary, theme); switch (logLevel) { case LogLevel.crit: