From 2defd83f0f6ee2200ca43213ec925a6491f26785 Mon Sep 17 00:00:00 2001 From: Mark Dumay <61946753+markdumay@users.noreply.github.com> Date: Wed, 25 Sep 2024 08:41:09 +0200 Subject: [PATCH] Test style adjustments of CookieYes content --- exampleSite/assets/scss/theme/theme.scss | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/exampleSite/assets/scss/theme/theme.scss b/exampleSite/assets/scss/theme/theme.scss index 61dd1268..bd81cd00 100644 --- a/exampleSite/assets/scss/theme/theme.scss +++ b/exampleSite/assets/scss/theme/theme.scss @@ -6,24 +6,24 @@ } .cky-cookie-audit-table th { - background: var(--#{$prefix}table-bg); - border: inherit; + background: var(--#{$prefix}table-bg) !important; + border: inherit !important; } .cky-cookie-audit-table td { - border: inherit; + border: inherit !important; } .cky-cookie-audit-table th, .cky-cookie-audit-table td { - color: inherit; + color: inherit !important; } .cky-cookie-audit-table tr:nth-child(2n + 1) td { - background: var(--#{$prefix}table-striped-bg); - color: var(--#{$prefix}table-striped-color); + background: var(--#{$prefix}table-striped-bg) !important; + color: var(--#{$prefix}table-striped-color) !important; } .cky-cookie-audit-table tr:nth-child(2n) td { - background: var(--#{$prefix}table-bg); + background: var(--#{$prefix}table-bg) !important; }