From aaca238208fcc91faa6572f1b9ee5d0eba787bb8 Mon Sep 17 00:00:00 2001 From: Chris Warrick Date: Sat, 25 Mar 2023 15:40:36 +0100 Subject: [PATCH] Override font for .sig for consistency with other code blocks --- python_docs_theme/static/pydoctheme.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python_docs_theme/static/pydoctheme.css b/python_docs_theme/static/pydoctheme.css index 5c0d394..005bbca 100644 --- a/python_docs_theme/static/pydoctheme.css +++ b/python_docs_theme/static/pydoctheme.css @@ -284,7 +284,8 @@ div.footer a:hover { color: #229; } -dl > dt span ~ em { +dl > dt span ~ em, +.sig { font-family: ui-monospace, "Cascadia Mono", "Segoe UI Mono", "Liberation Mono", Menlo, Monaco, Consolas, monospace; }