From 94de85712b15f84fd5d1a41ea9a9127e87b20c6b 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 6c141f8..34a5b5b 100644 --- a/python_docs_theme/static/pydoctheme.css +++ b/python_docs_theme/static/pydoctheme.css @@ -255,7 +255,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; }