Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions docs/_static/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
}

.intro-card {
background-color: var(--pst-color-background);
margin-bottom: 30px;
}

Expand Down Expand Up @@ -51,6 +52,29 @@ p.rubric {
border-bottom: none;
}

button.navbar-btn.rounded-circle {
padding: 0.25rem;
}

button.navbar-btn.search-button {
color: var(--pst-color-text-muted);
padding: 0;
}

button.navbar-btn:hover
{
color: var(--pst-color-primary);
}

button.theme-switch-button {
font-size: calc(var(--pst-font-size-icon) - .1rem);
border: none;
}

button span.theme-switch:hover {
color: var(--pst-color-primary);
}

/* Styling for Jupyter Notebook ReST Exports */

.dataframe tbody th, .dataframe tbody td {
Expand Down
5 changes: 3 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,12 @@
html_static_path = ["_static"]
html_theme_options = {
"logo": {
"image_light": "img/logo-name-light.svg",
"image_dark": "img/logo-name-dark.svg",
"image_light": "_static/img/logo-name-light.svg",
"image_dark": "_static/img/logo-name-dark.svg",
},
"github_url": "https://github.com/python-graphblas/python-graphblas",
}
html_show_sourcelink = False

autodoc_member_order = "groupwise"

Expand Down
4 changes: 2 additions & 2 deletions docs/env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ dependencies:
- commonmark # For RTD
- nbsphinx
- numpydoc
- pydata-sphinx-theme
- sphinx-panels
- pydata-sphinx-theme=0.13.1
- sphinx-panels=0.6.0