Skip to content

Commit 2c751e7

Browse files
Andy-GriggRevathyvenugopal162
authored andcommitted
ver: bump version 0.10.5
1 parent 5cceaa4 commit 2c751e7

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

src/ansys_sphinx_theme/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from ansys_sphinx_theme.extension.linkcode import DOMAIN_KEYS, sphinx_linkcode_resolve
1010
from ansys_sphinx_theme.latex import generate_404 # noqa: F401
1111

12-
__version__ = "0.10.4"
12+
__version__ = "0.10.5"
1313

1414
# Declare the fundamental paths of the theme
1515
THIS_PATH = pathlib.Path(__file__).parent.resolve()

src/ansys_sphinx_theme/theme/ansys_sphinx_theme/static/css/ansys_sphinx_theme.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,10 @@ tr:nth-child(even) {
290290
background-color: var(--pst-color-table-hover);
291291
}
292292

293+
div.rendered_html table.dataframe td {
294+
color: var(--pst-color-text-base);
295+
}
296+
293297
/*
294298
###############
295299
Table-centered
@@ -1018,6 +1022,12 @@ div.admonition {
10181022
background-color: var(--pst-color-on-surface);
10191023
}
10201024

1025+
/* Select only divisions that contain a dataframe, with enough specificity to override pydata css */
1026+
div.nboutput
1027+
div.output_area.rendered_html.docutils.container:has(table.dataframe) {
1028+
background-color: transparent;
1029+
}
1030+
10211031
/*
10221032
############
10231033
Border lines

0 commit comments

Comments
 (0)