Skip to content

Commit b3c260d

Browse files
committed
[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 7fce3b2 didn't fix the bug for that sphinx version. Just expand the CSS workaround to all <td> tags.
1 parent 255a507 commit b3c260d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/docs/_static/lldb.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ table.mapping td.content {
4747
/* Workaround for a Safari bug that would otherwise make table cells less wide
4848
than the containing text. This just sets it back to the default browser
4949
property.*/
50-
td p {
50+
td {
5151
-webkit-hyphens: manual !important;
5252
}
5353

0 commit comments

Comments
 (0)