diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2023-08-31 12:43:26 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@libreoffice.org> | 2023-08-31 21:21:07 +0200 |
commit | ffaa9e1adb04a683ec87eb5c4c35387384e32702 (patch) | |
tree | c692576c044d4d307ff94867a1c2c6a873c84652 /help3xsl | |
parent | d686d91fb8d108c8283dd8d9f537224ed43ac6ac (diff) |
Prevent literal words to wrap in lines.
Applies mostly on table columns
Change-Id: Ie18b84d9a052f4b189f06c43132457a3a925dcaa
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/156354
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
Diffstat (limited to 'help3xsl')
-rw-r--r-- | help3xsl/default.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/help3xsl/default.css b/help3xsl/default.css index 7ce0da75f3..539a7da2fb 100644 --- a/help3xsl/default.css +++ b/help3xsl/default.css @@ -125,6 +125,9 @@ pre, font-family: var(--font_mono); word-wrap: anywhere; } +.literal { + white-space: nowrap; +} .smathcode { border-radius: 2px; padding: 1px 3px; |