From 4805e5da0ddc6ee0579258bf5864297d94447bf5 Mon Sep 17 00:00:00 2001 From: Danny Colin Date: Sat, 25 Jul 2026 14:30:54 -0400 Subject: [PATCH] [Harmony] Bug 2057316 Fix table content wrapping in docs Signed-off-by: Danny Colin --- docs/en/rst/_static/bugzilla.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/en/rst/_static/bugzilla.css b/docs/en/rst/_static/bugzilla.css index 9b1081de7..5369bfd22 100644 --- a/docs/en/rst/_static/bugzilla.css +++ b/docs/en/rst/_static/bugzilla.css @@ -2,3 +2,15 @@ .wy-side-nav-search > a img.logo { 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; +}