From e969115a23ba9c97067876df81f5fedb9a76b506 Mon Sep 17 00:00:00 2001 From: Soumesh Banerjee Date: Wed, 18 Dec 2019 13:11:54 +0800 Subject: [PATCH] Fix the whitespace after everything which is link --- docs/_static/theme_overrides.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/_static/theme_overrides.css b/docs/_static/theme_overrides.css index 011488e79..6dfc2e278 100644 --- a/docs/_static/theme_overrides.css +++ b/docs/_static/theme_overrides.css @@ -41,6 +41,12 @@ a:hover { width: 240px !important; } -a.internal::after{ +/* For space between the return type and function name */ +a.internal + code.descname::before { + content: ' '; +} + +/* For space between the arguments of the function */ +a.internal + em::before { content: ' '; }