Skip to content

Commit dbde305

Browse files
authored
Unrolled build for rust-lang#117906
Rollup merge of rust-lang#117906 - GuillaumeGomez:improve-crate-name-hover, r=fmease,notriddle Improve display of crate name when hovered Currently when we hover the crate name, the background is stuck to the version and to the logo (when there is one): ![Screenshot from 2023-11-14 11-42-39](https://github.com/rust-lang/rust/assets/3050060/717190cd-483d-45a1-a462-e9ba342d4376) ![Screenshot from 2023-11-14 11-43-19](https://github.com/rust-lang/rust/assets/3050060/23f8bc9b-1304-4f91-ae1e-96bc508e9da6) I find it very unpleasant so I reduced the padding size and increased the margin (left and top) to keep the same positioning but not making it stuck anymore: ![Screenshot from 2024-01-29 20-40-11](https://github.com/rust-lang/rust/assets/3050060/82cf266c-7f99-4a46-a62b-ebe2445f52be) ![Screenshot from 2024-01-29 20-48-01](https://github.com/rust-lang/rust/assets/3050060/e7097c10-6e09-4bdc-a37f-070b6dac671d) [online docs](https://rustdoc.crud.net/imperio/improve-crate-name-hover/std/index.html) r? `@notriddle`
2 parents 5ad7454 + 96e6cfa commit dbde305

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

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

+2-4
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ ul.block, .block li {
638638

639639
.sidebar-crate h2 a {
640640
display: block;
641-
margin: 0 calc(-24px + 0.25rem) 0 -0.5rem;
641+
margin: 0 calc(-24px + 0.25rem) 0 -0.2rem;
642642
/* Align the sidebar crate link with the search bar, which have different
643643
font sizes.
644644
@@ -653,16 +653,14 @@ ul.block, .block li {
653653
x = ( 16px - 0.57rem ) / 2
654654
*/
655655
padding: calc( ( 16px - 0.57rem ) / 2 ) 0.25rem;
656-
padding-left: 0.5rem;
656+
padding-left: 0.2rem;
657657
}
658658

659659
.sidebar-crate h2 .version {
660660
display: block;
661661
font-weight: normal;
662662
font-size: 1rem;
663663
overflow-wrap: break-word;
664-
/* opposite of the link padding, cut in half again */
665-
margin-top: calc( ( -16px + 0.57rem ) / 2 );
666664
}
667665

668666
.sidebar-crate + .version {

0 commit comments

Comments
 (0)