Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Website homepage tweaks (funder logo, avatar size) #12595

Merged
merged 3 commits into from
May 2, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
26 changes: 26 additions & 0 deletions doc/_static/funding/cds-dark.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed doc/_static/funding/cds.png
Binary file not shown.
27 changes: 27 additions & 0 deletions doc/_static/funding/cds.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion doc/_static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ div#contributor-avatars div.card img {
border-radius: unset;
}
div#contributor-avatars div.card img {
width: 3em;
width: 2.5em;
}
.contributor-avatar {
clip-path: circle(closest-side);
Expand Down
15 changes: 13 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
"seaborn": ("https://seaborn.pydata.org/", None),
"statsmodels": ("https://www.statsmodels.org/dev", None),
"patsy": ("https://patsy.readthedocs.io/en/latest", None),
"pyvista": ("https://docs.pyvista.org", None),
"pyvista": ("https://docs.pyvista.org/version/stable", None),
"imageio": ("https://imageio.readthedocs.io/en/latest", None),
"picard": ("https://pierreablin.github.io/picard/", None),
"eeglabio": ("https://eeglabio.readthedocs.io/en/latest", None),
Expand Down Expand Up @@ -841,7 +841,18 @@ def append_attr_meth_examples(app, what, name, obj, options, lines):
),
dict(img="doe.svg", size="3", title="US Department of Energy"),
dict(img="anr.svg", size="3.5", title="Agence Nationale de la Recherche"),
dict(img="cds.png", size="2.25", title="Paris-Saclay Center for Data Science"),
dict(
img="cds.svg",
size="1.75",
title="Paris-Saclay Center for Data Science",
klass="only-light",
),
dict(
img="cds-dark.svg",
size="1.75",
title="Paris-Saclay Center for Data Science",
klass="only-dark",
),
dict(img="google.svg", size="2.25", title="Google"),
dict(img="amazon.svg", size="2.5", title="Amazon"),
dict(img="czi.svg", size="2.5", title="Chan Zuckerberg Initiative"),
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ test_extra = [
doc = [
"sphinx>=6",
"numpydoc",
"pydata_sphinx_theme==0.15.2",
"pydata_sphinx_theme>=0.15.2",
"sphinx-gallery>=0.16",
"sphinxcontrib-bibtex>=2.5",
"sphinxcontrib-towncrier",
Expand Down