Skip to content

Commit a5dd8d9

Browse files
Fix font weight on types, methods and associated types/consts
1 parent 3ddb78a commit a5dd8d9

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/librustdoc/html/static/rustdoc.css

+9-3
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,15 @@ h1.fqn > .in-band > a:hover {
146146
h2, h3, h4 {
147147
border-bottom: 1px solid;
148148
}
149-
.impl, .impl-items .method,
150-
.impl-items .type, .impl-items .associatedconstant,
151-
.impl-items .associatedtype {
149+
.impl,
150+
.impl-items .method,
151+
.methods .method,
152+
.impl-items .type,
153+
.methods .type,
154+
.impl-items .associatedconstant,
155+
.methods .associatedconstant,
156+
.impl-items .associatedtype,
157+
.methods .associatedtype {
152158
flex-basis: 100%;
153159
font-weight: 600;
154160
margin-top: 16px;

0 commit comments

Comments
 (0)