From b3c260d8fa07ed1202afdda9ca4c437a2a847080 Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Wed, 20 Jan 2021 10:29:08 +0100 Subject: [PATCH] [lldb][docs] Expand CSS fix for LLDB doc tables Apparently the sphinx version on the server doesn't place

tags in the table cells, so the previous fix from commit 7fce3b240b6b313b1becf19ddf3f2a90 didn't fix the bug for that sphinx version. Just expand the CSS workaround to all tags. --- lldb/docs/_static/lldb.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/docs/_static/lldb.css b/lldb/docs/_static/lldb.css index 6df20b7..e1e49f8 100644 --- a/lldb/docs/_static/lldb.css +++ b/lldb/docs/_static/lldb.css @@ -47,7 +47,7 @@ table.mapping td.content { /* Workaround for a Safari bug that would otherwise make table cells less wide than the containing text. This just sets it back to the default browser property.*/ -td p { +td { -webkit-hyphens: manual !important; } -- 2.7.4