Skip to content

Commit

Permalink
Rollup merge of rust-lang#87861 - tsoutsman:patch-1, r=GuillaumeGomez
Browse files Browse the repository at this point in the history
Fix heading colours in Ayu theme

Closes rust-lang#87828
The issue seems to stem from rust-lang#87210 where code headings were changed from a heading containing a `code` element to a heading with the `code-header` class. `rustdoc.css` was updated, but `ayu.css` was missed.
  • Loading branch information
JohnTitor authored Aug 10, 2021
2 parents be65d77 + 9a78489 commit 05d6699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/css/themes/ayu.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ h4 {
.docblock code {
color: #ffb454;
}
h3 > code, h4 > code, h5 > code {
.code-header {
color: #e6e1cf;
}
pre > code {
Expand Down

0 comments on commit 05d6699

Please sign in to comment.