diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2022-11-08 20:40:52 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-08 20:40:52 +0100 |
| commit | 3d20047f405ee83eeb727e109b57e55b59d2e66a (patch) | |
| tree | 6bfcf78c4cc5f9ed232f96153cc208cfd9a02185 /src | |
| parent | 02db37a18ab27e37d4edf9409f838c4549f24e24 (diff) | |
| parent | d97fa2536f6fb583e2e7a49b90a33632da33443c (diff) | |
| download | rust-3d20047f405ee83eeb727e109b57e55b59d2e66a.tar.gz rust-3d20047f405ee83eeb727e109b57e55b59d2e66a.zip | |
Rollup merge of #104114 - GuillaumeGomez:background-image-path, r=notriddle
Fix invalid background-image file name This is a follow-up of https://github.com/rust-lang/rust/pull/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``````
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustdoc/html/static/css/rustdoc.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css index a38c0e42ab4..f58d2c60942 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -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; |
