From 5697fc5011b14a4560d5109ec51a9f6c354a50ce Mon Sep 17 00:00:00 2001 From: foamyguy Date: Mon, 20 Oct 2025 16:09:51 -0500 Subject: [PATCH] workaround RTD theme property inline issue. --- docs/_static/custom.css | 8 ++++++++ docs/conf.py | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 docs/_static/custom.css diff --git a/docs/_static/custom.css b/docs/_static/custom.css new file mode 100644 index 0000000..d60cf4b --- /dev/null +++ b/docs/_static/custom.css @@ -0,0 +1,8 @@ +/* SPDX-FileCopyrightText: 2025 Sam Blenny + * SPDX-License-Identifier: MIT + */ + +/* Monkey patch the rtd theme to prevent horizontal stacking of short items + * see https://github.com/readthedocs/sphinx_rtd_theme/issues/1301 + */ +.py.property{display: block !important;} diff --git a/docs/conf.py b/docs/conf.py index ecd67bd..0d7e861 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -116,6 +116,9 @@ # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ["_static"] +# Include extra css to work around rtd theme glitches +html_css_files = ["custom.css"] + # The name of an image file (relative to this directory) to use as a favicon of # the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large.