Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ecb6686
Expand explanation of E0530
kornelski Aug 2, 2021
2a56a4f
removed references to parent/child from std::thread documentation
godmar Aug 7, 2021
eefd790
impl const From<num> for num
usbalbin Dec 27, 2020
09928a9
Add tests
usbalbin Mar 13, 2021
c8bf5ed
Add test for int to float
usbalbin Aug 7, 2021
d777cb8
less opt in const param of
BoxyUwU Aug 7, 2021
5f61271
fmt
BoxyUwU Aug 7, 2021
9a78489
Fix heading colours in Ayu theme
tsoutsman Aug 8, 2021
a4af040
Clarify terms in rustdoc book
tsoutsman Aug 8, 2021
f93cbed
Do not ICE on HIR based WF check when involving lifetimes
estebank Aug 6, 2021
cb19d83
Proper table row formatting in platform support
badboy Aug 9, 2021
bc4ce79
Added the `Option::unzip()` method
Kixiron Jul 30, 2021
eea3520
Added some basic tests for `Option::unzip()` and `Option::zip()` (I n…
Kixiron Jul 30, 2021
9d8081e
Enabled unzip_option feature for core tests & unzip docs
Kixiron Jul 31, 2021
ab2c590
Added tracking issue to unstable attribute
Kixiron Aug 5, 2021
c046d62
Use a more accurate span on assoc types WF checks
estebank Aug 6, 2021
33186e4
Rollup merge of #86840 - usbalbin:const_from, r=oli-obk
JohnTitor Aug 10, 2021
28e84e4
Rollup merge of #87636 - Kixiron:unzip-option, r=scottmcm
JohnTitor Aug 10, 2021
c9f68d2
Rollup merge of #87700 - kornelski:e530text, r=oli-obk
JohnTitor Aug 10, 2021
5709f22
Rollup merge of #87811 - estebank:issue-87549, r=oli-obk
JohnTitor Aug 10, 2021
304c5b9
Rollup merge of #87819 - estebank:assoc-type-span, r=jackh726
JohnTitor Aug 10, 2021
dd31fc3
Rollup merge of #87848 - godmar:@godmar/thread-join-documentation-fix…
JohnTitor Aug 10, 2021
be65d77
Rollup merge of #87854 - BoxyUwU:var-None, r=oli-obk
JohnTitor Aug 10, 2021
05d6699
Rollup merge of #87861 - tsoutsman:patch-1, r=GuillaumeGomez
JohnTitor Aug 10, 2021
91505d7
Rollup merge of #87865 - tsoutsman:master, r=GuillaumeGomez
JohnTitor Aug 10, 2021
74c27ab
Rollup merge of #87881 - badboy:platform-support-formatting, r=ehuss
JohnTitor Aug 10, 2021
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix heading colours in Ayu theme
Closes #87828 The issue seems to stem from #87210 where code headings were changed from a heading containing code to a heading with the `code-header` class. `rustdoc.css` was updated, but `ayu.css` was missed.
  • Loading branch information
tsoutsman authored Aug 8, 2021
commit 9a784894eeca79f5878ff4004166d07abeaff8a2
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