Skip to content

DEPS: Unpin pydata-sphinx-theme #53029

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

Merged
merged 25 commits into from
May 11, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
f9f470e
DOC: migrate from sphinx-panels to sphinx-design
jorisvandenbossche Aug 27, 2021
4dd8141
Merge remote-tracking branch 'upstream/main' into docs-migrate-sphinx…
jorisvandenbossche Dec 2, 2022
344201d
update css for latest pydata-sphinx-theme
jorisvandenbossche Dec 2, 2022
4e3f51d
add sphinx-design to env
jorisvandenbossche Dec 2, 2022
be156b9
further fix css
jorisvandenbossche Dec 2, 2022
9bddaed
Merge branch 'main' into docs-migrate-sphinx-design
mroeschke Apr 26, 2023
92df06b
Convert panels to grid, address warning, remove panel dependency
mroeschke Apr 27, 2023
3090553
Try addressing failures
mroeschke Apr 27, 2023
a4a0353
Merge remote-tracking branch 'upstream/main' into docs-migrate-sphinx…
mroeschke Apr 28, 2023
31db3e1
Fix css
mroeschke Apr 28, 2023
0bb740d
Fix more css
mroeschke Apr 28, 2023
823ca97
Just use one comparison card class
mroeschke Apr 28, 2023
0bcd79d
Unpin pydata-sphinx-theme
mroeschke Apr 28, 2023
dbdfc38
Uncomment other workflows
mroeschke Apr 28, 2023
28dae97
address some warnings
mroeschke Apr 29, 2023
9c3c3fa
Merge remote-tracking branch 'upstream/main' into deps/pydata-sphinx-pin
mroeschke May 1, 2023
bd210bc
Revert "Uncomment other workflows"
mroeschke May 1, 2023
92bb29e
Change bath to json_url
mroeschke May 2, 2023
d0aea28
Change back to path
mroeschke May 2, 2023
c7a1eff
No /
mroeschke May 2, 2023
b844e6d
Merge remote-tracking branch 'upstream/main' into deps/pydata-sphinx-pin
mroeschke May 3, 2023
be96762
Change version
mroeschke May 3, 2023
3e9cbb0
Update doc/source/conf.py
mroeschke May 3, 2023
966585e
Merge branch 'main' into deps/pydata-sphinx-pin
mroeschke May 8, 2023
f122326
Merge branch 'main' into deps/pydata-sphinx-pin
mroeschke May 10, 2023
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
Prev Previous commit
Next Next commit
Just use one comparison card class
  • Loading branch information
mroeschke committed Apr 28, 2023
commit 823ca9715ddc6d5dc8111263750265f9f890d061
7 changes: 1 addition & 6 deletions doc/source/_static/css/getting_started.css
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ ul.task-bullet > li > p:first-child {
.comparison-card .sd-card-img-top {
margin: 10px;
margin-bottom: 20px;
height: 72px;
height: 52px;
background: none !important;
}

Expand All @@ -155,11 +155,6 @@ ul.task-bullet > li > p:first-child {
border-color: #545b62 !important;
}


.comparison-card-excel .sd-card-img-top, .comparison-card-stata .sd-card-img-top, .comparison-card-sas .sd-card-img-top {
height: 52px;
}

.comparison-card .card-footer {
border: none;
background-color: var(--pst-color-background);
Expand Down
10 changes: 5 additions & 5 deletions doc/source/getting_started/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ the pandas-equivalent operations compared to software you already know:
.. grid-item-card::
:img-top: ../_static/logo_r.svg
:columns: 12 6 6 6
:class-card: comparison-card-r
:class-card: comparison-card
:shadow: md

The `R programming language <https://www.r-project.org/>`__ provides the
Expand All @@ -569,7 +569,7 @@ the pandas-equivalent operations compared to software you already know:
.. grid-item-card::
:img-top: ../_static/logo_sql.svg
:columns: 12 6 6 6
:class-card: comparison-card-sql
:class-card: comparison-card
:shadow: md

Already familiar to ``SELECT``, ``GROUP BY``, ``JOIN``, etc.?
Expand All @@ -588,7 +588,7 @@ the pandas-equivalent operations compared to software you already know:
.. grid-item-card::
:img-top: ../_static/logo_stata.svg
:columns: 12 6 6 6
:class-card: comparison-card-stata
:class-card: comparison-card
:shadow: md

The ``data set`` included in the `STATA <https://en.wikipedia.org/wiki/Stata>`__
Expand All @@ -608,7 +608,7 @@ the pandas-equivalent operations compared to software you already know:
.. grid-item-card::
:img-top: ../_static/spreadsheets/logo_excel.svg
:columns: 12 6 6 6
:class-card: comparison-card-excel
:class-card: comparison-card
:shadow: md

Users of `Excel <https://en.wikipedia.org/wiki/Microsoft_Excel>`__
Expand All @@ -628,7 +628,7 @@ the pandas-equivalent operations compared to software you already know:
.. grid-item-card::
:img-top: ../_static/logo_sas.svg
:columns: 12 6 6 6
:class-card: comparison-card-sas
:class-card: comparison-card
:shadow: md

The `SAS <https://en.wikipedia.org/wiki/SAS_(software)>`__ statistical software suite
Expand Down