Skip to content

Commit 346a97b

Browse files
Rollup merge of rust-lang#104114 - GuillaumeGomez:background-image-path, r=notriddle
Fix invalid background-image file name This is a follow-up of rust-lang#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```
2 parents fb78d9c + d97fa25 commit 346a97b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustdoc/html/static/css/rustdoc.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -854,7 +854,7 @@ so that we can apply CSS-filters to change the arrow color in themes */
854854
background-size: 20px;
855855
background-position: calc(100% - 2px) 56%;
856856
/* image is black color, themes should apply a "filter" property to change the color */
857-
background-image: url("down-arrow-2d685a4bae708e15.svg");
857+
background-image: url("down-arrow-927217e04c7463ac.svg");
858858
}
859859
#crate-search > option {
860860
font-size: 1rem;

0 commit comments

Comments
 (0)