From 3150f4f952c9ecd624b362053a8310f7e81d9934 Mon Sep 17 00:00:00 2001 From: Marvin Kastner <marvin.kastner@tuhh.de> Date: Tue, 2 Apr 2024 10:17:50 +0200 Subject: [PATCH] Fix replacing labels with numbered list (must have missed it at some package update) --- docs/_static/css/custom.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/_static/css/custom.css b/docs/_static/css/custom.css index f4e0a853..ec4973ed 100644 --- a/docs/_static/css/custom.css +++ b/docs/_static/css/custom.css @@ -21,12 +21,12 @@ div.wy-nav-content { - https://sphinxcontrib-bibtex.readthedocs.io/en/latest/usage.html#bullet-lists-and-enumerated-lists - https://github.com/mcmtroffaes/sphinxcontrib-bibtex/issues/8#issuecomment-300141183 for more details. */ -dl.citation dt.label { +div.citation span.label { display: none !important; } -dl.citation dd { - display: list-item; +div.citation { + display: list-item !important; list-style-type: arabic; }