diff --git a/public/app/features/dashboard-scene/scene/layout-rows/RowItemRenderer.tsx b/public/app/features/dashboard-scene/scene/layout-rows/RowItemRenderer.tsx index ccd033e67f3..90f78405557 100644 --- a/public/app/features/dashboard-scene/scene/layout-rows/RowItemRenderer.tsx +++ b/public/app/features/dashboard-scene/scene/layout-rows/RowItemRenderer.tsx @@ -88,7 +88,8 @@ export function RowItemRenderer({ model }: SceneComponentProps) { className={cx( styles.rowTitle, isHeaderHidden && styles.rowTitleHidden, - !isTopLevel && styles.rowTitleNested + !isTopLevel && styles.rowTitleNested, + isCollapsed && styles.rowTitleCollapsed )} role="heading" > @@ -148,6 +149,9 @@ function getStyles(theme: GrafanaTheme2) { fontSize: theme.typography.body.fontSize, fontWeight: theme.typography.fontWeightRegular, }), + rowTitleCollapsed: css({ + color: theme.colors.text.secondary, + }), wrapper: css({ display: 'flex', flexDirection: 'column',