From 89aa588b27260b27e6a1c845364197a0da27c053 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Wed, 6 May 2026 14:31:04 +0200 Subject: [PATCH] [furo] customize CSS - code.literal nowrap & improve large table layout (#3408) The readability can be improve with the following two changes: Slightly increase the content width to make the engine list more readable:: .content { width: 52em; /* instead of 46em */ } To avoid word wrap in bang:: p code.literal { text-wrap: nowrap; } Sugested-by: https://github.com/searxng/searxng/pull/3408#issuecomment-2094082144 --- docs/_static/searxng.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/_static/searxng.css b/docs/_static/searxng.css index 46787350d..67480bf85 100644 --- a/docs/_static/searxng.css +++ b/docs/_static/searxng.css @@ -1,3 +1,10 @@ +.content { + width: 52em; /* instead of 46em */ +} + +p code.literal { + text-wrap: nowrap; +} aside.sidebar { border-color: lightsteelblue;