diff options
| author | Mark Simulacrum <mark.simulacrum@gmail.com> | 2017-05-12 18:57:38 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-12 18:57:38 -0600 |
| commit | f28e3cdf54b935d6284bd554e17dc8e44f7b4deb (patch) | |
| tree | 40e3eff0c40a62932a64b8ed10bec46a2e3f6a59 /src | |
| parent | 7b1e51d798ac449b841d51c93a74cb3a1d71c64c (diff) | |
| parent | 26e7e491b4f78c87c94fb6ad83fbe85ff9c5761b (diff) | |
| download | rust-f28e3cdf54b935d6284bd554e17dc8e44f7b4deb.tar.gz rust-f28e3cdf54b935d6284bd554e17dc8e44f7b4deb.zip | |
Rollup merge of #41951 - Eijebong:master, r=GuillaumeGomez
rustdoc: Break words in the location box of the sidebar. This prevents long names from overflowing. Before:  After: 
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index fc879dc0705..60ea6ed1d8d 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -193,6 +193,7 @@ nav.sub { font-size: 17px; margin: 30px 0 20px 0; text-align: center; + word-wrap: break-word; } .location:empty { |
