Skip to content

Commit d1aa2f7

Browse files
authored
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`
2 parents ed1fea8 + d889a4e commit d1aa2f7

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
@@ -397,7 +397,7 @@ nav.sub {
397397
}
398398

399399
.source .sidebar > *:not(:first-child) {
400-
transition: opacity 0.5s, visibility 0.2s;
400+
transition: opacity 0.5s;
401401
opacity: 0;
402402
visibility: hidden;
403403
}

0 commit comments

Comments
 (0)