diff options
| author | bors <bors@rust-lang.org> | 2021-07-19 10:10:08 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-07-19 10:10:08 +0000 |
| commit | 8df945c4717ffaf923b57bf30c473df6fc98bc85 (patch) | |
| tree | 8929ee5e23a7bd91146213570268566f37deb884 /src/librustdoc/html/static/css/rustdoc.css | |
| parent | 83f08223a90b71f59e5dc5f38e384a49a76c8452 (diff) | |
| parent | 6cb69ea790ad635acb3a8d4826e03ac29ca10351 (diff) | |
| download | rust-8df945c4717ffaf923b57bf30c473df6fc98bc85.tar.gz rust-8df945c4717ffaf923b57bf30c473df6fc98bc85.zip | |
Auto merge of #87269 - GuillaumeGomez:rollup-qukedv0, r=GuillaumeGomez
Rollup of 8 pull requests Successful merges: - #86230 (Add --nocapture option to rustdoc) - #87210 (Rustdoc accessibility: make the sidebar headers actual headers) - #87227 (Move asm! and global_asm! to core::arch) - #87236 (Simplify command-line argument initialization on unix) - #87251 (Fix "item info" width) - #87256 (Extend HIR-based WF checking to associated type defaults) - #87259 (triagebot shortcut config) - #87268 (Don't create references to uninitialized data in `List::from_arena`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src/librustdoc/html/static/css/rustdoc.css')
| -rw-r--r-- | src/librustdoc/html/static/css/rustdoc.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css index b86f012c0e1..e608ad05b17 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -342,6 +342,8 @@ nav.sub { margin: 30px 10px 20px 10px; text-align: center; word-wrap: break-word; + font-weight: inherit; + padding: 0; } .sidebar .version { @@ -394,6 +396,8 @@ nav.sub { text-align: center; font-size: 17px; margin-bottom: 5px; + font-weight: inherit; + padding: 0; } .sidebar-links { @@ -921,6 +925,9 @@ body.blur > :not(#help) { padding: 0 20px 20px 17px;; } +.item-info .stab { + display: table; +} .stab { border-width: 1px; border-style: solid; |
