diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2018-10-05 22:33:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-05 22:33:18 +0200 |
| commit | f1b42c5ca78bfe72ac87aead071b2f12faac8980 (patch) | |
| tree | a114d1630a82aa3eefa93222f2120b4300728ed4 | |
| parent | a95a6e287a9ea2665e6e1a230cf6acaeb1bbe9d1 (diff) | |
| parent | 2feea63b4b4cec6ec7d990368234cf77cb01c5af (diff) | |
| download | rust-f1b42c5ca78bfe72ac87aead071b2f12faac8980.tar.gz rust-f1b42c5ca78bfe72ac87aead071b2f12faac8980.zip | |
Rollup merge of #54834 - kzys:fix-small-screen, r=GuillaumeGomez
rustdoc: overflow:auto doesn't work nicely on small screens This property was introduced by 3f92ff34b5, but looks it doesn't overwrap even without the property. Fixes #54672.
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index ee811f33792..58ac46d2271 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -97,7 +97,6 @@ h1, h2, h3:not(.impl):not(.method):not(.type):not(.tymethod):not(.important), h4 h1.fqn { border-bottom: 1px dashed; margin-top: 0; - overflow: auto; } h2, h3:not(.impl):not(.method):not(.type):not(.tymethod), h4:not(.method):not(.type):not(.tymethod):not(.associatedconstant) { border-bottom: 1px solid; |
