[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 7fce3b240b
didn't fix the bug for that sphinx version. Just expand the CSS workaround
to all <td> tags.
This commit is contained in:
Raphael Isemann 2021-01-20 10:29:08 +01:00
parent 255a507716
commit b3c260d8fa
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ table.mapping td.content {
/* Workaround for a Safari bug that would otherwise make table cells less wide /* 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 than the containing text. This just sets it back to the default browser
property.*/ property.*/
td p { td {
-webkit-hyphens: manual !important; -webkit-hyphens: manual !important;
} }