Auto merge of #87182 - GuillaumeGomez:rollup-whwohua, r=GuillaumeGomez
Rollup of 7 pull requests Successful merges: - #86983 (Add or improve natvis definitions for common standard library types) - #87069 (ExprUseVisitor: Treat ByValue use of Copy types as ImmBorrow) - #87138 (Correct invariant documentation for `steps_between`) - #87145 (Make --cap-lints and related options leave crate hash alone) - #87161 (RFC2229: Use the correct place type) - #87162 (Fix type decl layout "overflow") - #87167 (Fix sidebar display on small devices) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
This commit is contained in:
commit
59d92bd017
30 changed files with 837 additions and 121 deletions
|
|
@ -247,6 +247,9 @@ code, pre, a.test-arrow {
|
|||
pre {
|
||||
padding: 14px;
|
||||
}
|
||||
.type-decl pre {
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.source .content pre {
|
||||
padding: 20px;
|
||||
|
|
@ -1631,15 +1634,18 @@ details.undocumented[open] > summary::before {
|
|||
display: none;
|
||||
}
|
||||
|
||||
/* We do NOT hide this element so that alternative device readers still have this information
|
||||
available. */
|
||||
.sidebar-elems {
|
||||
position: fixed;
|
||||
z-index: 1;
|
||||
left: 0;
|
||||
top: 45px;
|
||||
bottom: 0;
|
||||
width: 246px;
|
||||
/* We move the sidebar to the left by its own width so it doesn't appear. */
|
||||
left: -246px;
|
||||
overflow-y: auto;
|
||||
border-right: 1px solid;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sidebar > .block.version {
|
||||
|
|
@ -1727,8 +1733,7 @@ details.undocumented[open] > summary::before {
|
|||
}
|
||||
|
||||
.show-it {
|
||||
display: block;
|
||||
width: 246px;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.show-it > .block.items {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue