From ab872612ce0798c712164f4fbfe49f9f4fff0490 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 4 May 2021 13:42:59 +0200 Subject: [PATCH] RadioButtonGroup: Change background to background.primary (#33678) --- .../src/components/Forms/RadioButtonGroup/RadioButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButton.tsx b/packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButton.tsx index d5edc6a3854..e96ebfc0a5a 100644 --- a/packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButton.tsx +++ b/packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButton.tsx @@ -57,7 +57,7 @@ const getRadioButtonStyles = stylesFactory((theme: GrafanaTheme2, size: RadioBut const textColor = theme.colors.text.secondary; const textColorHover = theme.colors.text.primary; - const bg = theme.components.input.background; + const bg = theme.colors.background.primary; // remove the group inner padding (set on RadioButtonGroup) const labelHeight = height * theme.spacing.gridSize - 4 - 2;