-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rustdoc: Fix font CSS for crate lists #76453
Conversation
Some changes occurred in HTML/CSS/JS. Some changes occurred in HTML/CSS themes. A change occurred in the Ayu theme. cc @Cldfire |
(rust_highfive has picked a reviewer for you, use r? to override) |
I had put it in the wrong file in rust-lang#76126. This should fix it now. Thank you to @ollie27 for pointing this out!
26e0fce
to
bf09a52
Compare
Thanks for fixing this so quickly. @bors r=GuillaumeGomez,ollie27 rollup |
📌 Commit bf09a52 has been approved by |
@@ -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"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why doesn't this have a fallback font?
font: 16px/1.6 "Fira Sans"; | |
font: 16px/1.6 "Fira Sans", sans-serif; |
☀️ Test successful - checks-actions, checks-azure |
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