Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 14 pull requests #53056

Merged
merged 30 commits into from
Aug 4, 2018
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
0da7da8
Align 6-week cycle check with beta promotion instead of stable release.
kennytm Aug 1, 2018
6e63b0d
`Applicability`-ify librustc_lint
zackmdavis Aug 2, 2018
66a4718
rustbuild: fix local_rebuild
Keruspe Aug 2, 2018
3a93e91
Remove unnecessary local in await! macro
cramertj Aug 2, 2018
dda85ab
Stabilize --color and --error-format options in rustdoc
GuillaumeGomez Aug 2, 2018
23bdc82
RELEASES.md: fix the `hash_map::Entry::or_default` link
cuviper Aug 2, 2018
6a3dfa4
privacy: Fix an ICE in `path_is_private_type`
petrochenkov Aug 2, 2018
a04b2cd
Provide `{to,from}_{ne,le,be}_bytes` functions on integers
tbu- Jun 29, 2018
71460d4
volatile operations docs: clarify that this does not help wrt. concur…
RalfJung Aug 3, 2018
94de821
Specify reentrancy gurantees of `Once::call_once`
matklad Aug 3, 2018
a2f9aaf
Fix trailnig WS
matklad Aug 3, 2018
e2cda7d
Fix invalid code css rule
GuillaumeGomez Aug 3, 2018
11ffeed
Make entire row of doc search results clickable
carols10cents Aug 3, 2018
d5dd37b
Make left column of rustdoc search results narrower
carols10cents Aug 4, 2018
96179cd
Rollup merge of #52940 - kennytm:move-checktool-protection-week, r=al…
kennytm Aug 4, 2018
e82dab7
Rollup merge of #52968 - zackmdavis:app-lint-cability, r=estebank
kennytm Aug 4, 2018
a365382
Rollup merge of #52969 - Keruspe:local_rebuild, r=alexcrichton
kennytm Aug 4, 2018
59bfa8a
Rollup merge of #52995 - cramertj:smaller-await, r=withoutboats
kennytm Aug 4, 2018
035db4b
Rollup merge of #52996 - cuviper:1.28-or_default, r=Mark-Simulacrum
kennytm Aug 4, 2018
d028b3e
Rollup merge of #53001 - petrochenkov:master, r=estebank
kennytm Aug 4, 2018
7a23b5d
Rollup merge of #53003 - GuillaumeGomez:stabilize-rustdoc-options, r=…
kennytm Aug 4, 2018
aeb2028
Rollup merge of #53022 - RalfJung:volatile, r=alexcrichton
kennytm Aug 4, 2018
4341098
Rollup merge of #53024 - matklad:patch-1, r=alexcrichton
kennytm Aug 4, 2018
e8060a4
Rollup merge of #53041 - GuillaumeGomez:fix-code-css-rule, r=QuietMis…
kennytm Aug 4, 2018
aefa307
Rollup merge of #53047 - integer32llc:rustdoc-clicky-clicky, r=QuietM…
kennytm Aug 4, 2018
0ddfae5
Change tracking issue from #49792 to #51919
tbu- Aug 4, 2018
52db0ed
Rollup merge of #51919 - tbu-:pr_num_to_from_bytes2, r=SimonSapin
kennytm Aug 4, 2018
b643351
Rollup merge of #53050 - carols10cents:rustdoc-moar-room, r=Guillaume…
kennytm Aug 4, 2018
d46dca6
Remove redundant field names in structs
ljedrz Aug 4, 2018
396dda0
Rollup merge of #53062 - ljedrz:redundant_field_names, r=Mark-Simulacrum
kennytm Aug 4, 2018
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
Fix invalid code css rule
  • Loading branch information
GuillaumeGomez committed Aug 3, 2018
commit e2cda7dd821ea7fa7e08a4ffe260c58eb832a025
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/themes/dark.css
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ h2, h3:not(.impl):not(.method):not(.type):not(.tymethod), h4:not(.method):not(.t
background: rgba(0, 0, 0, 0);
}

.docblock p > code, .docblock-short p > code {
.docblock code, .docblock-short code {
background-color: #2A2A2A;
}
pre {
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/themes/light.css
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ h2, h3:not(.impl):not(.method):not(.type):not(.tymethod), h4:not(.method):not(.t
background: rgba(0, 0, 0, 0);
}

.docblock p > code, .docblock-short p > code {
.docblock code, .docblock-short code {
background-color: #F5F5F5;
}
pre {