diff options
| author | Michael Howell <michael@notriddle.com> | 2022-09-30 10:15:59 -0700 |
|---|---|---|
| committer | Michael Howell <michael@notriddle.com> | 2022-09-30 10:45:19 -0700 |
| commit | f145f283f737d766404f39b26dd773eadc98e344 (patch) | |
| tree | 79bd418ae483b9f4ed39de659428920b13d59a5d /src/librustdoc/html/static/css | |
| parent | 8728e178554eb7b0eeb4d8c2e254b07a3bccd4cb (diff) | |
| download | rust-f145f283f737d766404f39b26dd773eadc98e344.tar.gz rust-f145f283f737d766404f39b26dd773eadc98e344.zip | |
rustdoc: add missing margin to no-docblock trait items
Fixes another regression caused by 8846c0853d8687fda0e5f23f6687b03b243980ee, this time fixing the appearance of methods that have no docblock (we didn't notice this one because libstd docs *always* have docblocks). See how it looks at https://doc.rust-lang.org/nightly/nightly-rustc/rustdoc/clean/types/trait.AttributesExt.html
Diffstat (limited to 'src/librustdoc/html/static/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 37c95f6c784..8ffd092426d 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -2010,7 +2010,8 @@ in storage.js plus the media query with (min-width: 701px) .impl, #implementors-list > .docblock, .impl-items > section, - { +.methods > section +{ margin-bottom: 0.75em; } |
