diff --git a/public/app/features/explore/RichHistory/RichHistoryCard.test.tsx b/public/app/features/explore/RichHistory/RichHistoryCard.test.tsx index e3fe187f11c..efc968fda40 100644 --- a/public/app/features/explore/RichHistory/RichHistoryCard.test.tsx +++ b/public/app/features/explore/RichHistory/RichHistoryCard.test.tsx @@ -71,9 +71,9 @@ describe('RichHistoryCard', () => { const wrapper = setup(); expect(wrapper.find({ 'aria-label': 'Data source name' }).text()).toEqual('Test datasource'); }); - it('should render "Not linked to existing data source" if removed data source', () => { + it('should render "Data source does not exist anymore" if removed data source', () => { const wrapper = setup({ isRemoved: true }); - expect(wrapper.find({ 'aria-label': 'Data source name' }).text()).toEqual('Not linked to existing data source'); + expect(wrapper.find({ 'aria-label': 'Data source name' }).text()).toEqual('Data source does not exist anymore'); }); describe('commenting', () => { diff --git a/public/app/features/explore/RichHistory/RichHistoryCard.tsx b/public/app/features/explore/RichHistory/RichHistoryCard.tsx index b4db8387bfa..342630d7882 100644 --- a/public/app/features/explore/RichHistory/RichHistoryCard.tsx +++ b/public/app/features/explore/RichHistory/RichHistoryCard.tsx @@ -35,7 +35,7 @@ const getStyles = stylesFactory((theme: GrafanaTheme, isRemoved: boolean) => { : theme.colors.white : isRemoved ? theme.colors.gray15 - : theme.colors.dark7; + : theme.colors.gray05; const cardBoxShadow = theme.isLight ? `0px 2px 2px ${borderColor}` : `0px 2px 4px black`; return { @@ -46,7 +46,7 @@ const getStyles = stylesFactory((theme: GrafanaTheme, isRemoved: boolean) => { margin: ${theme.spacing.sm} 0; box-shadow: ${cardBoxShadow}; background-color: ${cardColor}; - border-radius: ${theme.border.radius}; + border-radius: ${theme.border.radius.sm}; .starred { color: ${theme.colors.orange}; } @@ -71,7 +71,7 @@ const getStyles = stylesFactory((theme: GrafanaTheme, isRemoved: boolean) => { display: flex; align-items: center; font-size: ${theme.typography.size.sm}; - font-weight: ${theme.typography.weight.bold}; + font-weight: ${theme.typography.weight.semibold}; `, queryActionButtons: css` max-width: ${rigtColumnContentWidth}; @@ -84,7 +84,7 @@ const getStyles = stylesFactory((theme: GrafanaTheme, isRemoved: boolean) => { } `, queryContainer: css` - font-weight: ${theme.typography.weight.bold}; + font-weight: ${theme.typography.weight.semibold}; width: calc(100% - ${rigtColumnWidth}); `, queryRow: css` @@ -236,7 +236,7 @@ export function RichHistoryCard(props: Props) {
- {isRemoved ? 'Not linked to existing data source' : query.datasourceName} + {isRemoved ? 'Data source does not exist anymore' : query.datasourceName}
{queryActionButtons}