Author: Raphael Isemann Date: 2021-01-20T10:30:00+01:00 New Revision: b3c260d8fa07ed1202afdda9ca4c437a2a847080
URL: https://github.com/llvm/llvm-project/commit/b3c260d8fa07ed1202afdda9ca4c437a2a847080 DIFF: https://github.com/llvm/llvm-project/commit/b3c260d8fa07ed1202afdda9ca4c437a2a847080.diff LOG: [lldb][docs] Expand CSS fix for LLDB doc tables Apparently the sphinx version on the server doesn't place <p> 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 <td> tags. Added: Modified: lldb/docs/_static/lldb.css Removed: ################################################################################ diff --git a/lldb/docs/_static/lldb.css b/lldb/docs/_static/lldb.css index 6df20b7dd6e4..e1e49f84c903 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; } _______________________________________________ llvm-branch-commits mailing list llvm-branch-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits