From: Danny Colin Date: Sat, 25 Jul 2026 18:40:25 +0000 (-0400) Subject: [5.2] Bug 2057316 Fix table content wrapping in docs (#230) X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=3e983ad69f184892ccda79365c807d63c2437173;p=thirdparty%2Fbugzilla.git [5.2] Bug 2057316 Fix table content wrapping in docs (#230) Signed-off-by: Danny Colin --- diff --git a/docs/en/rst/_static/bugzilla.css b/docs/en/rst/_static/bugzilla.css index 8d1132f245..5369bfd22e 100644 --- a/docs/en/rst/_static/bugzilla.css +++ b/docs/en/rst/_static/bugzilla.css @@ -3,3 +3,14 @@ min-width: 150px; width: 350px; } + +.wy-table-responsive table td, +.wy-table-responsive table th { + white-space: wrap; +} + +.rst-content table.docutils td, +.rst-content table.field-list td, +.wy-table td { + vertical-align: top; +}