Skip to content

Releases: piccolo-orm/piccolo_theme

0.22.0

15 May 13:00
Compare
Choose a tag to compare

Fixed a styling issue with the search box in Sphinx 7.3.x. Thanks to @heuer for reporting this issue.

0.21.0

26 Mar 22:02
Compare
Choose a tag to compare

Allow parallel builds.

Thanks to @explode for reporting this issue.

0.20.0

07 Mar 17:04
Compare
Choose a tag to compare

Added additional ordered list styles - thanks to @fizbin for reporting this.

0.19.0

30 Oct 18:04
Compare
Choose a tag to compare

Fixed span tags (thanks to @jvcarli for this).

Added support for Python 3.12.

0.18.0

20 Sep 20:59
Compare
Choose a tag to compare

Added z-index for the left sidebar on mobile.

0.17.0

23 Aug 14:47
Compare
Choose a tag to compare

Fixes to support Sphinx 7.2. Thanks to @alexlancaster for reporting this.

0.16.1

12 Jul 13:28
Compare
Choose a tag to compare

Bundling the Roboto Mono bold-italic font with the theme, as it's used in some code blocks. Thanks to @noxpardalis for adding this.

0.16.0

16 Jun 07:14
Compare
Choose a tag to compare

The custom fonts are now bundled with the theme. Thanks to @noxpardalis for this.

0.15.0

16 Mar 08:08
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.14.0...0.15.0

0.14.0

09 Oct 07:30
Compare
Choose a tag to compare

When switching to dark mode, we automatically apply our own custom dark mode styles to code blocks.

This gives a great experience out of the box. However, if someone uses their own Pygments theme, they might want to use that theme in both light mode, and dark mode. They can now do so, using the dark_mode_code_blocks option.

# conf.py

html_theme_options = {
    "dark_mode_code_blocks": False
}