[Lldb-commits] [PATCH] D94991: [lldb][docs] Remove -webkit-hyphens in table cells so that table widths are correct on Safari
Raphael Isemann via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Jan 20 00:05:57 PST 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rG7fce3b240b6b: [lldb][docs] Remove -webkit-hyphens in table cells so that table widths areā¦ (authored by teemperor).
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D94991/new/
https://reviews.llvm.org/D94991
Files:
lldb/docs/_static/lldb.css
Index: lldb/docs/_static/lldb.css
===================================================================
--- lldb/docs/_static/lldb.css
+++ lldb/docs/_static/lldb.css
@@ -44,6 +44,13 @@
padding-bottom: 15px;
}
+/* 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 {
+ -webkit-hyphens: manual !important;
+}
+
div.sphinxsidebar .caption {
font-family: Helvetica, Verdana, sans-serif;
font-size: 10pt;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D94991.317789.patch
Type: text/x-patch
Size: 529 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210120/80c3e0ac/attachment.bin>
More information about the lldb-commits
mailing list