You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
there is a regression in 0.15.3 about the hamburger-button known as "primary sidebar toggle", that no longer works as expected; clicking the button does not slide the left-hand-side toc pane away, as it used to do
I have spent some time trying to investigate the root cause of this problem, here are some findings that I hope might turn out helpful
in 0.15.2
as I understand it, the logic is that the button (.primary-toggle) has a for="__primary" attribute,
which binds the button to a hidden input field here
in 0.15.3
however in the broken release, the for attribute is still present
but the linked input seems to have been renamed into pst-primary-sidebar-checkbox
which breaks the link between both elements
given the apparent size of the differences between both versions, I am not comfortable with pursuing this investigation further without insights, but hopefully this can trigger ideas on how best to fix it ?
The text was updated successfully, but these errors were encountered:
This is a breakage caused by pydata-sphinx-theme, but we (sphinx-book-theme) will need to make the changes to fix it :) I've opened a PR there (executablebooks/sphinx-book-theme#841)
as mentioned here
jupyter-book/jupyter-book#2160
and then here
executablebooks/sphinx-book-theme#836
there is a regression in 0.15.3 about the hamburger-button known as "primary sidebar toggle", that no longer works as expected; clicking the button does not slide the left-hand-side toc pane away, as it used to do
I have spent some time trying to investigate the root cause of this problem, here are some findings that I hope might turn out helpful
in 0.15.2
as I understand it, the logic is that the button (
.primary-toggle
) has afor="__primary"
attribute,which binds the button to a hidden input field here
in 0.15.3
however in the broken release, the
for
attribute is still presentbut the linked input seems to have been renamed into
pst-primary-sidebar-checkbox
which breaks the link between both elements
given the apparent size of the differences between both versions, I am not comfortable with pursuing this investigation further without insights, but hopefully this can trigger ideas on how best to fix it ?
The text was updated successfully, but these errors were encountered: