Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
3fee843
Fix internal doc link
ChrisDenton Sep 2, 2022
3afbc11
updated description of File struct in std::fs
BartMassey Sep 3, 2022
7714562
Don't delay invalid lhs bug unless we know it'll be replaced by one i…
compiler-errors Sep 3, 2022
69721de
Forbid mixing `System` with sytem allocator calls
CAD97 Sep 3, 2022
3e743a0
rustdoc: remove redundant mobile-sized `.source nav:not(.sidebar).sub`
notriddle Sep 3, 2022
98f4b20
Also suggest dereferencing LHS when both &mut T and T are valid binop…
compiler-errors Sep 3, 2022
41703e6
Remove duplicated test (superseeded by search-form-elements.goml)
GuillaumeGomez Sep 4, 2022
4a3e169
Make `char::is_lowercase` and `char::is_uppercase` const
mx00s Sep 3, 2022
2b328ea
Address feedback from PR #101401
mx00s Sep 4, 2022
835a461
Test internal documentation
ChrisDenton Sep 4, 2022
c4ea4fb
Rollup merge of #101322 - ChrisDenton:internal-doc, r=Mark-Simulacrum
matthiaskrgr Sep 4, 2022
8f8a36d
Rollup merge of #101385 - BartMassey-upstream:file-doc, r=thomcc
matthiaskrgr Sep 4, 2022
dd35e2f
Rollup merge of #101388 - compiler-errors:issue-101376, r=fee1-dead
matthiaskrgr Sep 4, 2022
723f0c4
Rollup merge of #101394 - CAD97:patch-3, r=Mark-Simulacrum
matthiaskrgr Sep 4, 2022
43a7438
Rollup merge of #101397 - notriddle:notriddle/source-nav-not-sidebar-…
matthiaskrgr Sep 4, 2022
d9bba11
Rollup merge of #101401 - mx00s:expand-const, r=fee1-dead
matthiaskrgr Sep 4, 2022
cea11f5
Rollup merge of #101407 - GuillaumeGomez:rm-duplicated-gui-test, r=Dy…
matthiaskrgr Sep 4, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
rustdoc: remove redundant mobile-sized .source nav:not(.sidebar).sub
It's redundant because there's already a selector `.source nav.sub` with
exactly the same margin-left at line 796.

This selector was added in 1e98fb1, along
with an identical desktop selector, but that desktop selector was removed in
6a5f8b1 as part of a larger simplification.
  • Loading branch information
notriddle committed Sep 3, 2022
commit 3e743a064ec341548f2dfb6dafddc2b3d2d66c7f
4 changes: 0 additions & 4 deletions src/librustdoc/html/static/css/rustdoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -1887,10 +1887,6 @@ in storage.js plus the media query with (min-width: 701px)
background-color: var(--sidebar-background-color);
}

.source nav:not(.sidebar).sub {
margin-left: 32px;
}

.content {
margin-left: 0px;
}
Expand Down