mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-30 00:23:41 +00:00
Rollup merge of #92404 - GuillaumeGomez:src-font-size, r=jsha
Fix font size for [src] links in headers Fixes #90384. cc `@jsha` r? `@camelid`
This commit is contained in:
commit
b510278278
@ -1080,8 +1080,11 @@ body.blur > :not(#help) {
|
|||||||
|
|
||||||
.impl-items .srclink, .impl .srclink, .methods .srclink {
|
.impl-items .srclink, .impl .srclink, .methods .srclink {
|
||||||
/* Override header settings otherwise it's too bold */
|
/* Override header settings otherwise it's too bold */
|
||||||
font-size: 1.0625rem;
|
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
.impl .srclink {
|
||||||
|
font-size: 1.0625rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.rightside {
|
.rightside {
|
||||||
|
@ -351,11 +351,8 @@ a.test-arrow:hover {
|
|||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
:target, :target > * {
|
|
||||||
background: rgba(255, 236, 164, 0.06);
|
|
||||||
}
|
|
||||||
|
|
||||||
:target {
|
:target {
|
||||||
|
background: rgba(255, 236, 164, 0.06);
|
||||||
border-right: 3px solid rgba(255, 180, 76, 0.85);
|
border-right: 3px solid rgba(255, 180, 76, 0.85);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -295,11 +295,8 @@ a.test-arrow:hover{
|
|||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
:target, :target > * {
|
|
||||||
background-color: #494a3d;
|
|
||||||
}
|
|
||||||
|
|
||||||
:target {
|
:target {
|
||||||
|
background-color: #494a3d;
|
||||||
border-right: 3px solid #bb7410;
|
border-right: 3px solid #bb7410;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -284,11 +284,8 @@ a.test-arrow:hover{
|
|||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
:target, :target > * {
|
|
||||||
background: #FDFFD3;
|
|
||||||
}
|
|
||||||
|
|
||||||
:target {
|
:target {
|
||||||
|
background: #FDFFD3;
|
||||||
border-right: 3px solid #AD7C37;
|
border-right: 3px solid #AD7C37;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
12
src/test/rustdoc-gui/src-font-size.goml
Normal file
12
src/test/rustdoc-gui/src-font-size.goml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
// This test ensures that the "[src]" have the same font size as their headers
|
||||||
|
// to avoid having some weird height difference in the background when the element
|
||||||
|
// is selected.
|
||||||
|
goto: file://|DOC_PATH|/test_docs/struct.Foo.html
|
||||||
|
show-text: true
|
||||||
|
// Check the impl headers.
|
||||||
|
assert-css: (".impl.has-srclink .srclink", {"font-size": "17px"}, ALL)
|
||||||
|
// The ".6" part is because the font-size is actually "1.1em".
|
||||||
|
assert-css: (".impl.has-srclink .code-header.in-band", {"font-size": "17.6px"}, ALL)
|
||||||
|
// Check the impl items.
|
||||||
|
assert-css: (".impl-items .has-srclink .srclink", {"font-size": "16px"}, ALL)
|
||||||
|
assert-css: (".impl-items .has-srclink .code-header", {"font-size": "16px"}, ALL)
|
Loading…
Reference in New Issue
Block a user