diff options
| author | bors <bors@rust-lang.org> | 2021-04-24 04:54:10 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-04-24 04:54:10 +0000 |
| commit | e11a9fa52a3f372dadd6db3d3f2ed7dc2621dcc4 (patch) | |
| tree | 72d3be050eb98bab8554561f3673961f7fa47ce0 /src/librustdoc/html/static/rustdoc.css | |
| parent | a7aba58e9684175c5c5dfef8277c95ebc43f904a (diff) | |
| parent | ec61abf9a98eaab0f83f32be70306559bdea511f (diff) | |
| download | rust-e11a9fa52a3f372dadd6db3d3f2ed7dc2621dcc4.tar.gz rust-e11a9fa52a3f372dadd6db3d3f2ed7dc2621dcc4.zip | |
Auto merge of #84501 - JohnTitor:rollup-wxu1thu, r=JohnTitor
Rollup of 10 pull requests Successful merges: - #83990 (implement `TrustedRandomAccess` for `Take` iterator adapter) - #84250 (bootstrap: use bash on illumos to run install scripts) - #84320 (Use details tag for trait implementors.) - #84436 (Make a few functions private) - #84453 (Document From implementations for Waker and RawWaker) - #84458 (Remove unnecessary fields and parameters in rustdoc) - #84485 (Add some associated type bounds tests) - #84489 (Mention FusedIterator case in Iterator::fuse doc) - #84492 (rustdoc: Remove unnecessary dummy span) - #84496 (Add some specialization tests) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src/librustdoc/html/static/rustdoc.css')
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index 44fb531100a..a024fa49b0e 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -1573,6 +1573,10 @@ h4 > .notable-traits { left: -10px; } + .item-list > details.rustdoc-toggle > summary:not(.hideme)::before { + left: -10px; + } + #all-types { margin: 10px; } @@ -1787,6 +1791,7 @@ details.rustdoc-toggle > summary::before { font-weight: 300; font-size: 0.8em; letter-spacing: 1px; + cursor: pointer; } details.rustdoc-toggle > summary.hideme::before { @@ -1794,7 +1799,8 @@ details.rustdoc-toggle > summary.hideme::before { } details.rustdoc-toggle > summary:not(.hideme)::before { - float: left; + position: absolute; + left: -23px; } /* When a "hideme" summary is open and the "Expand description" or "Show |
