diff options
| author | bors <bors@rust-lang.org> | 2021-07-21 13:54:22 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-07-21 13:54:22 +0000 |
| commit | 05f2326c0570fdd64f53532a089bbbc361d190e6 (patch) | |
| tree | 4b1f69fd54478ba6be8edf9cefdacda297a8ba01 /src/librustdoc/html/static/css/rustdoc.css | |
| parent | cf932aa584f2ba1a1744f3ef0b21f14387276fb6 (diff) | |
| parent | 3a8bc0d7da1c675e3c56e9f703eb5fdc20874b2f (diff) | |
| download | rust-05f2326c0570fdd64f53532a089bbbc361d190e6.tar.gz rust-05f2326c0570fdd64f53532a089bbbc361d190e6.zip | |
Auto merge of #87347 - GuillaumeGomez:rollup-ke92xxc, r=GuillaumeGomez
Rollup of 9 pull requests Successful merges: - #87187 (Fix NixOS detection) - #87206 (avoid temporary vectors/reuse iterators) - #87230 (Fix docblock <table> overflow) - #87273 (Recognize bounds on impls as const bounds) - #87279 (Add comments explaining the unix command-line argument support.) - #87301 (Fix typo in compile.rs) - #87311 (Get back the more precise suggestion spans of old regionck) - #87321 (Add long explanation for E0722) - #87342 (Add long explanation for E0757) Failed merges: - #87270 (Don't display <table> in item summary) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src/librustdoc/html/static/css/rustdoc.css')
| -rw-r--r-- | src/librustdoc/html/static/css/rustdoc.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css index e608ad05b17..6672093eb7b 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -560,7 +560,8 @@ nav.sub { .docblock table { margin: .5em 0; width: calc(100% - 2px); - border: 1px dashed; + overflow-x: auto; + display: block; } .docblock table td { |
