diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2026-05-06 14:31:04 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2026-05-07 16:19:28 +0200 |
| commit | 89aa588b27260b27e6a1c845364197a0da27c053 (patch) | |
| tree | 7a18d791b396e1a9d949cbdfcdc1056f004e7e6a /docs | |
| parent | 50626ef150694555653016b47110dbbd7d2172f9 (diff) | |
[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
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/_static/searxng.css | 7 |
1 files changed, 7 insertions, 0 deletions
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; |
