From ab796767a89167d15e04ec06cf3796aeda42e392 Mon Sep 17 00:00:00 2001 From: obozdag Date: Thu, 30 May 2024 08:19:11 +0200 Subject: [PATCH] docs: Prevent text-wrap for span.pre in user guide citheme.css Add span.pre to span.std to prevent text-wrap in user guide citheme.css --- user_guide_src/source/_static/css/citheme.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/user_guide_src/source/_static/css/citheme.css b/user_guide_src/source/_static/css/citheme.css index b3264e096336..fae4909dd62c 100644 --- a/user_guide_src/source/_static/css/citheme.css +++ b/user_guide_src/source/_static/css/citheme.css @@ -245,7 +245,8 @@ html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not( background-color: #fffff0; } -span.std { +span.std, +span.pre { text-wrap: nowrap; }