[lldb][docs] Expand CSS fix for LLDB doc tables
authorRaphael Isemann <teemperor@gmail.com>
Wed, 20 Jan 2021 09:29:08 +0000 (10:29 +0100)
committerRaphael Isemann <teemperor@gmail.com>
Wed, 20 Jan 2021 09:30:00 +0000 (10:30 +0100)
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.

lldb/docs/_static/lldb.css

index 6df20b7..e1e49f8 100644 (file)
@@ -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 {
+td {
   -webkit-hyphens: manual !important;
 }