From 97dca963a9c39eaeec175e61e00d060ef2ab74dc Mon Sep 17 00:00:00 2001 From: Tharun Rajendran Date: Wed, 7 Jul 2021 11:16:38 +0530 Subject: [PATCH] Table: Fixes color for data links (#36446) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Table: add styling for anchor tag * inherit color from parent to anchor tag Co-authored-by: Torkel Ödegaard --- packages/grafana-ui/src/components/Table/styles.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/grafana-ui/src/components/Table/styles.ts b/packages/grafana-ui/src/components/Table/styles.ts index a1bf46b85f7..d9bb1770a0a 100644 --- a/packages/grafana-ui/src/components/Table/styles.ts +++ b/packages/grafana-ui/src/components/Table/styles.ts @@ -43,6 +43,9 @@ export const getTableStyles = (theme: GrafanaTheme2) => { display: inline-flex; } } + a { + color: inherit; + } `; };