From a5c62221bb6b855bee683b90ec7620755c99b084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateus=20Queir=C3=B3s?= Date: Wed, 20 Sep 2023 12:36:58 -0300 Subject: [PATCH] [@mantine/core] Fix table highlight doesn't work on striped dark rows --- src/mantine-core/src/components/Table/Table.module.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mantine-core/src/components/Table/Table.module.css b/src/mantine-core/src/components/Table/Table.module.css index b65cbcf3960..f295eb906a2 100644 --- a/src/mantine-core/src/components/Table/Table.module.css +++ b/src/mantine-core/src/components/Table/Table.module.css @@ -37,7 +37,7 @@ background-color: var(--_tr-bg, transparent); @mixin hover { - --_tr-bg: var(--_tr-hover-bg, transparent); + --_tr-bg: var(--_tr-hover-bg, transparent) !important; } &[data-with-row-border] {