Daniel McCloy

Results 258 comments of Daniel McCloy

we (MNE-Python) fixed the wrapping problem in our local CSS like this: ```css dl.field-list { grid-template-columns: auto 1fr; } ``` I can put in a PR if that seems an...

oops, you're right, sorry. I remembered dealing with this issue, and I naively checked the browser console to see what rules from our custom CSS were applying to that node...

...although, strangely, it doesn't seem to happen on the MNE-Python site, so maybe I did eventually fix it in a different PR? Will dig deeper.

I can reproduce the problem @bryevdv is seeing, and I confirm that my suggested CSS rule doesn't fix it on the Bokeh site. I don't have time right now to...

I realized that this is (sort of?) on purpose, as the page numbered `3` is demoing what happens when you put multiple title-level items on one page. Since it ends...

> That said, I think we should invest a bit in improving the documentation to make it clear how and why you might want to remove the in-page TOC. I've...

+1 to close, and to have a policy of doing what dependabot suggests promptly (I'd rather deal with it occasionally breaking something visual that we don't notice right away, rather...

I've put in [a PR to MNE-Python](https://github.com/mne-tools/mne-python/pull/11033) that should generate a working CircleCI site that demos this error. Will update here once the build is done.

Here is the rendered MNE-Python doc with the empty right column: - [homepage](https://output.circle-artifacts.com/output/job/76dc0922-9594-4da0-9562-e56f6d365046/artifacts/0/dev/index.html) - [installation page](https://output.circle-artifacts.com/output/job/76dc0922-9594-4da0-9562-e56f6d365046/artifacts/0/dev/install/index.html)

> ```python > html_theme_options = { > ... > "page_sidebar_items": ["page-toc"], > ... > } > ``` agreed that this does fix things for MNE-Python docs too. I'll see if...