From c2ee2f10a793db61b09c264993318d1c727bb69f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 18 May 2021 12:23:17 +0200 Subject: [PATCH] Table: Fix issue with table border not showing with colored background cells (#34231) --- packages/grafana-ui/src/components/Table/styles.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/grafana-ui/src/components/Table/styles.ts b/packages/grafana-ui/src/components/Table/styles.ts index 8dfe059485c..43eab0087fb 100644 --- a/packages/grafana-ui/src/components/Table/styles.ts +++ b/packages/grafana-ui/src/components/Table/styles.ts @@ -25,6 +25,7 @@ export const getTableStyles = (theme: GrafanaTheme2) => { ${color ? `color: ${color};` : ''}; ${background ? `background: ${background};` : ''}; + background-clip: padding-box; &:last-child:not(:only-child) { border-right: none;