Rollup merge of #93241 - GuillaumeGomez:rust-logo-appearance, r=jsha

Fix brief appearance of rust logo in the sidebar

Part of #91374.

I simply removed the CSS animation on the visibility, which now makes it all appear at once. I didn't change the CSS animation on the width though, which gives:

https://user-images.githubusercontent.com/3050060/150689595-067a6e00-9875-40c8-9d8a-1e3031dbcaba.mp4

cc `@camelid`

r? `@jsha`
This commit is contained in:
Matthias Krüger 2022-01-24 12:29:56 +01:00 committed by GitHub
commit d1aa2f7b0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -397,7 +397,7 @@ nav.sub {
}
.source .sidebar > *:not(:first-child) {
transition: opacity 0.5s, visibility 0.2s;
transition: opacity 0.5s;
opacity: 0;
visibility: hidden;
}