- Remove version constrain for Sphinx 8 in Nefertiti's dependencies.
- Fix various UI/CSS issues in small form factors.
- Move
pygments_light_style
andpygments_dark_style
options inside theme options (html_theme_options
), aspygments_dark_style
is no longer a valid config setting inapp.config
by Sphinx. Update docs accordingly. - Change CSS margins for table element.
- Use text-align in paragraphs included inside figures, so that they are aligned conform to the figure alignment.
- Fix highlighting foldable items in the left-side TOC when they are the current selected item.
- Update actions in
publish.yml
GH action workflow.
- Small fix: include missing non-python files in the package.
- Provide better support for version-change directives (
versionadded
,versionchanged
,deprecated
, andversionremoved
) when they only get a version number and no optional explanatory text. - Increment the font size for monospace font to match normal font.
- Fix in
js/src/tocresize.py
to avoid setting the height of the sidebars when they are not part of the grid.
- Fix issue in
pygments.py
when building Sphinx docs with the theme.
- Use the directive
:hideindex: 1
, to hide the nftt-sidebar-content. - For compatibility with previous versions, rename stored color from cyan to default.
- Move footer to the bottom of the page.
- Serve static files with the version number in the name.
- When producing the HTML static site, create a file called
doc_versions.js
, containing the list of versions (name and url) specified in theversion
entry of thehtml_theme_options
. - Change the CSS layout so that the grid centers itself, regardless of whether the toc at the right side is visible or not.
- Use a fluid layout (Bootstrap's
container-fluid
) to allow expanding the TOC in the right side to the right border of the browser. The goal is to increase readability of that area, specially when displaying content in monospace (ie: APIs and the like).
- Fixes issues #10: Image caption displayed centered only in the default colorset. File
scss/components/_images.scss
was not included when building the rest of the colorsets. Fixed by Jinyan Xu, @Phantom1003.
- Fixes issues 6: Incorrect page navigator when enabling numbered toc. Thanks to Jinyan Xu, @Phantom1003.