| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2022-07-05 | Update rustdoc tests | Guillaume Gomez | -2/+10 | |
| 2022-07-05 | rustdoc: Add more semantic information to impl ids | pierwill | -2/+2 | |
| Instead of generating `#impl`, `#impl-1`, etc., generate IDs like `#impl-Foo<M>`. Co-authored-by: Noah Lev <camelidcamel@gmail.com> | ||||
| 2022-05-06 | Add missing newline | Michael Howell | -1/+1 | |
| 2022-05-05 | rustdoc: ensure HTML/JS side implementors don't have dups | Michael Howell | -0/+7 | |
| 2022-02-09 | rustdoc: fix spacing of non-toggled impl blocks | Jacob Hoffman-Andrews | -0/+4 | |
| We recently removed the "up here" arrows on item-infos, and adjusted vertical spacing so that even without the arrow, it would be visually clear which item the item-info belonged to. The new CSS styles for vertical spacing only applied to toggles, though. This missed non-toggled impl blocks - for instance, those without any methods, like https://doc.rust-lang.org/nightly/std/marker/trait.Send.html#implementors. The result was lists of implementors that were spaced too closely. This PR fixes the spacing by making it apply to non-toggled impl blocks as well. This also fixes an issue where item-infos were displayed too far below their items. That was a result of display: table on .item-info .stab. Changed that to display: inline-block. | ||||
| 2021-09-01 | Add tests for implementors associated types display | Guillaume Gomez | -9/+9 | |
| 2021-07-25 | Rustdoc accessibility: use real headers for doc items | bors | -2/+2 | |
| Part of #87059 Partially reverts #84703 Preview at: https://notriddle.com/notriddle-rustdoc-test/real-headers/std/index.html | ||||
| 2021-07-12 | Add test for implementors | Guillaume Gomez | -0/+16 | |
