diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2021-05-15 13:29:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-15 13:29:53 +0200 |
| commit | 5bfbabc892c521cc0bf5dd824171ce29eae9da8d (patch) | |
| tree | 902dbad7a4dd8a5ba83ec1f1066dddb02d0c938e | |
| parent | 36b3c284977ed73bcf39affb7e2b7f75ffeeb4d5 (diff) | |
| parent | 812994e40d3429d0566489e00578f39bf9f8d6b2 (diff) | |
| download | rust-5bfbabc892c521cc0bf5dd824171ce29eae9da8d.tar.gz rust-5bfbabc892c521cc0bf5dd824171ce29eae9da8d.zip | |
Rollup merge of #85256 - GuillaumeGomez:fix-implementors-display, r=notriddle
Fix display for "implementors" section Just saw this problem when going through docs:  This fix puts it back to normal:  You can see it on the `TryFrom` page for example. r? ```@Nemo157```
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index 1b7eff4604f..073fc217f18 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -542,7 +542,7 @@ h4 > code, h3 > code, .invisible > code { font-size: 0.8em; } -.content .methods > div:not(.notable-traits) { +.content .methods > div:not(.notable-traits):not(.methods) { margin-left: 40px; margin-bottom: 15px; } |
