From c14cbfc65d2127ed5a2e8069aff377bfc3bbaef6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Thu, 17 Nov 2022 15:51:09 +0100 Subject: [PATCH] Breadcrumbs: Remove semi-bold and change current/last breadcrumb text color (#58875) --- public/app/core/components/Breadcrumbs/BreadcrumbItem.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/app/core/components/Breadcrumbs/BreadcrumbItem.tsx b/public/app/core/components/Breadcrumbs/BreadcrumbItem.tsx index 45d6a565ad3..718a2fee452 100644 --- a/public/app/core/components/Breadcrumbs/BreadcrumbItem.tsx +++ b/public/app/core/components/Breadcrumbs/BreadcrumbItem.tsx @@ -44,8 +44,10 @@ const getStyles = (theme: GrafanaTheme2) => { overflow: 'hidden', padding: theme.spacing(0, 0.5), whiteSpace: 'nowrap', + color: theme.colors.text.secondary, }), breadcrumbLink: css({ + color: theme.colors.text.primary, '&:hover': { textDecoration: 'underline', }, @@ -55,7 +57,6 @@ const getStyles = (theme: GrafanaTheme2) => { color: theme.colors.text.primary, display: 'flex', flex: 1, - fontWeight: theme.typography.fontWeightMedium, minWidth: 0, maxWidth: 'max-content',