From e3a66bcccc7f8122e9fbe682bc3e1352792ce7fb Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 28 Jun 2021 04:16:51 -0400 Subject: [PATCH] Fix property CSS to be more inline with everything else --- docs/_static/style.css | 6 ++++++ docs/conf.py | 2 ++ 2 files changed, 8 insertions(+) diff --git a/docs/_static/style.css b/docs/_static/style.css index b08ac8937..e1d218b30 100644 --- a/docs/_static/style.css +++ b/docs/_static/style.css @@ -1040,12 +1040,18 @@ dl.function > dt, dl.attribute > dt, dl.classmethod > dt, dl.method > dt, +dl.property > dt, dl.class > dt, dl.exception > dt { background-color: var(--api-entry-background); padding: 1px 10px; } +/* bug in sphinx: https://github.com/sphinx-doc/sphinx/issues/9384 */ +dl.property > dt > span.descname + em.property { + display: none; +} + dd { margin-top: 0.5em; margin-bottom: 0.5em; diff --git a/docs/conf.py b/docs/conf.py index f7193dc59..03f69c195 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -45,6 +45,8 @@ extensions = [ autodoc_member_order = 'bysource' autodoc_typehints = 'none' +# maybe consider this? +# napoleon_attr_annotations = False extlinks = { 'issue': ('https://github.com/Rapptz/discord.py/issues/%s', 'GH-'),