Skip to content

Commit

Permalink
Rollup merge of #104114 - GuillaumeGomez:background-image-path, r=not…
Browse files Browse the repository at this point in the history
…riddle

Fix invalid background-image file name

This is a follow-up of #101702.

Apparently the image hash was the wrong one. You can see the error in https://doc.rust-lang.org/nightly/core/primitive.u16.html?search=hello too.

I really need to check if I can adds check for resources load errors in `browser-ui-test`.

cc `@jsha`
r? `@notriddle`
  • Loading branch information
GuillaumeGomez authored Nov 7, 2022
2 parents 66d2559 + d97fa25 commit fbf9f42
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit fbf9f42

Please sign in to comment.