Auto merge of #76453 - camelid:fix-css-crate-list, r=GuillaumeGomez,ollie27

rustdoc: Fix font CSS for crate lists

I had put it in the wrong file in #76126. This should fix it now. Thank
you to `@ollie27` for pointing this out!

---

`@rustbot` modify labels: T-rustdoc C-bug
This commit is contained in:
bors 2020-09-09 04:35:40 +00:00
commit 780ca140a0
2 changed files with 4 additions and 3 deletions

View File

@ -126,6 +126,10 @@ h1, h2, h3, h4,
font-family: "Fira Sans", sans-serif;
}
.content ul.crate a.crate {
font: 16px/1.6 "Fira Sans";
}
ol, ul {
padding-left: 25px;
}

View File

@ -179,9 +179,6 @@ pre {
.content span.externcrate, .content span.mod, .content a.mod {
color: #acccf9;
}
.content ul.crate a.crate {
font: 16px/1.6 "Fira Sans";
}
.content span.struct, .content a.struct {
color: #ffa0a5;
}