Skip to content

Rollup of 11 pull requests #104151

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

Closed
wants to merge 37 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
6d45529
Fix #103451, find_width_of_character_at_span return width with 1 when…
chenyukang Oct 25, 2022
8dbd817
Upgrade cc for working is_flag_supported on cross-compiles
palfrey Oct 29, 2022
a9d7cfc
Update cc in Cargo.lock
palfrey Oct 29, 2022
a2037e3
Check for substs compatibility for RPITITs
compiler-errors Nov 1, 2022
32dae91
Remap RPITIT substs properly
compiler-errors Nov 1, 2022
0f632c8
Fix ICE in default impl error reporting
compiler-errors Nov 1, 2022
f32e678
Rename some variables.
nnethercote Nov 3, 2022
84ca2c3
Clarify range calculations.
nnethercote Nov 3, 2022
34b32b0
Use `Mode` less.
nnethercote Nov 3, 2022
7dbf2c0
Make non-ASCII errors more consistent.
nnethercote Nov 3, 2022
a21c045
Improve comments.
nnethercote Nov 3, 2022
d963686
Refactor `cook_lexer_literal`.
nnethercote Nov 3, 2022
a203482
Inline and remove `validate_int_literal`.
nnethercote Nov 3, 2022
f8e2cef
Move intra-doc link checks to a separate function.
ehuss Nov 4, 2022
57b2290
Remove reference from the intra-doc link checker.
ehuss Nov 4, 2022
a838952
Remove `unescape_byte_literal`.
nnethercote Nov 4, 2022
43d21b5
Rename some `result` variables as `res`, for consistency.
nnethercote Nov 4, 2022
13d4c61
Place config.toml in current working directory if config not found
ted-tanner Nov 5, 2022
4c3cad0
Add --print=split-debuginfo
kamirr Nov 7, 2022
0c9896b
Fix `const_fn_trait_ref_impl`, add test for it
onestacked Nov 7, 2022
d97fa25
Fix invalid background-image file name
GuillaumeGomez Nov 7, 2022
87c190c
Reworked const fn ref tests
onestacked Nov 7, 2022
66e8a29
Only set config.config to None when using default path
ted-tanner Nov 7, 2022
ae5cc9c
fix: lint against lint functions
Rejyr Nov 8, 2022
d6c97a3
Simplify `unescape_{char,byte}`.
nnethercote Nov 8, 2022
c48ca7d
remove redundent "<>" for ty::Slice with reference type
Oct 28, 2022
f058639
Rollup merge of #103521 - chenyukang:yukang/fix-103451-avoid-hang, r=…
GuillaumeGomez Nov 8, 2022
c703763
Rollup merge of #103675 - lyming2007:issue-103271-fix, r=fee1-dead
GuillaumeGomez Nov 8, 2022
00fe93c
Rollup merge of #103744 - palfrey:unwind-upgrade-cc, r=Mark-Simulacrum
GuillaumeGomez Nov 8, 2022
30f887b
Rollup merge of #103827 - compiler-errors:rpitit-substs-compat, r=wes…
GuillaumeGomez Nov 8, 2022
a12708b
Rollup merge of #103919 - nnethercote:unescaping-cleanups, r=matklad
GuillaumeGomez Nov 8, 2022
593d0cc
Rollup merge of #103952 - ehuss:dont-intra-linkcheck-reference, r=Mar…
GuillaumeGomez Nov 8, 2022
6d62d29
Rollup merge of #104027 - ted-tanner:issue-103697-fix, r=jyn514
GuillaumeGomez Nov 8, 2022
aca8cdf
Rollup merge of #104104 - kamirr:master, r=lcnr
GuillaumeGomez Nov 8, 2022
da9a8d8
Rollup merge of #104113 - ink-feather-org:fix_const_fn_ref_impls, r=c…
GuillaumeGomez Nov 8, 2022
b20886c
Rollup merge of #104114 - GuillaumeGomez:background-image-path, r=not…
GuillaumeGomez Nov 8, 2022
0789938
Rollup merge of #104132 - Rejyr:rustc_lint-function-lints, r=davidtwco
GuillaumeGomez Nov 8, 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
Fix invalid background-image file name
  • Loading branch information
GuillaumeGomez authored Nov 7, 2022
commit d97fa2536f6fb583e2e7a49b90a33632da33443c
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/css/rustdoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ so that we can apply CSS-filters to change the arrow color in themes */
background-size: 20px;
background-position: calc(100% - 2px) 56%;
/* image is black color, themes should apply a "filter" property to change the color */
background-image: url("down-arrow-2d685a4bae708e15.svg");
background-image: url("down-arrow-927217e04c7463ac.svg");
}
#crate-search > option {
font-size: 1rem;
Expand Down