- Change close button color when switching between dark/light color schemes.
- Change dividers color when switching between dark/light color themes.
- Make search field full width when in small form factor view.
- Increment font color contrast in light color-scheme.
- Raise exception when using sphinx-nefertiti with Sphinx<7.0.0.
- Fix issue about the use of
style_header_neutral
in thelayout.html
and thecolorsets-dropdown.html
templates.
- New: Theme option
style_header_neutral
(boolean) to integrate header background color with light/dark color-schemes. Update docs and tests accordingly.
- New: Highlight the item in the TOC at the right side ('on this page' column) when the location bar refers to an anchor that is part of the TOC.
- Change: Lighten body background in light color-scheme for all colorsets.
- ReadTheDocs no longer provides versions in the context of the template.
- Update quick-start and version-dropdown documents.
- Update
versions.js
to display thecurrent_version
given inconf.py
.
- Increase contrast for body-bg, pre-border-color, and border-color for the light color scheme, in all colorsets.
- Fix colorset selector. Data attributes do not match between JS and HTML.
- Fix light/dark selector. When not 'default', reloading brings back 'default'.
- Update required version of sphinx-colorschemed-images.
- Update
colorsets.rst
in the docs.
- Header and footer links can be references to internal documents or URLs.
- Fix issue in Nefertiti when building the docs in ReadTheDocs.
- Add breadcrumbs.
- Use smooth scrolling.
- Add back-to-top button.
- Add customizable header links.
- Limit height of version dropdown.
- Use compact notation to display number of stars, and forks, in header's repository widget.
- Scroll the left sidebar to show the link corresponding to the current page.
- In the sphinx-nefertiti documentation website, reset the colorset selected by the user 24 hours after it has been selected.
- Migrate from
setup.py
and multiple requirements files, topyproject.toml
. - Use tox to run verify that tests pass against multiple versions of Sphinx.
- 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.