From b119346621151e1fc673a133fb295b10a13bce1b Mon Sep 17 00:00:00 2001 From: Tania Allard Date: Mon, 12 Feb 2024 21:17:28 +0000 Subject: [PATCH] BUG - Ensure lists markers colours are visible (#1711) * Set table colour to match text * fix lint --------- Co-authored-by: Daniel McCloy --- src/pydata_sphinx_theme/assets/styles/content/_tables.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/pydata_sphinx_theme/assets/styles/content/_tables.scss b/src/pydata_sphinx_theme/assets/styles/content/_tables.scss index f07233d14..c476269c8 100644 --- a/src/pydata_sphinx_theme/assets/styles/content/_tables.scss +++ b/src/pydata_sphinx_theme/assets/styles/content/_tables.scss @@ -44,7 +44,10 @@ td { } } -// override bootstrap background colors +// override bootstrap table colors .table { - --bs-table-bg: transparent; + --bs-table-bg: transparent; //background + --bs-table-color: var( + --pst-color-text-base + ); // ensure text and bullets are visible }