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
Hi. I'm trying to use the toc2 extension, but the toc pane is positioned above where it should (to the window top), and hence the upper section of the sidebar gets behind the notebook menu bars:
On an Ubuntu 22.04.2 system. As per #1628 I installed with nbclassic<0.5, but the issue is the same if I use nbclassic 0.5.3
The issue seems to be related to some CSS. The computed positioning of the toc-wrapper DIV is:
and somehow this is pushing the DIV above its natural position. If I manually add a top: 106px property to that DIV, then it appears to be positioned fine:
... but this seems like a hack. Also, there are other issues: the configuration toggle to display as a floating window is not working (though I can manually drag the sidebar as a floating window), and the "Navigate" pull-down menu opens as a truncated window:
Is there any configuration/installation combination that I could use to fix this behaviour?
The text was updated successfully, but these errors were encountered:
@paulovn I have the same issue and as a workaround, I noticed that if you select any branch of the ToC tree and pull it down, then it gets displayed properly.
Until it is fixed...
@paulovn I have the same issue and as a workaround, I noticed that if you select any branch of the ToC tree and pull it down, then it gets displayed properly. Until it is fixed...
I ended up using the mentioned nasty hack: adding a CSS property
top: 106px; /* hack to fix behaviour */
to the #toc-wrapper element. Seems to work, but it's fragile.
Hi. I'm trying to use the toc2 extension, but the toc pane is positioned above where it should (to the window top), and hence the upper section of the sidebar gets behind the notebook menu bars:
My configuration is:
On an Ubuntu 22.04.2 system. As per #1628 I installed with
nbclassic<0.5
, but the issue is the same if I use nbclassic 0.5.3The issue seems to be related to some CSS. The computed positioning of the
toc-wrapper
DIV is:and somehow this is pushing the DIV above its natural position. If I manually add a
top: 106px
property to that DIV, then it appears to be positioned fine:... but this seems like a hack. Also, there are other issues: the configuration toggle to display as a floating window is not working (though I can manually drag the sidebar as a floating window), and the "Navigate" pull-down menu opens as a truncated window:
Is there any configuration/installation combination that I could use to fix this behaviour?
The text was updated successfully, but these errors were encountered: