diff options
| author | Michael Goulet <michael@errs.io> | 2022-09-08 14:41:10 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-08 14:41:10 -0700 |
| commit | c810cd19b210b2e038a111a6d9cc1dd783b20567 (patch) | |
| tree | ab9f9c8d1123dfcecb55e54cc9e9c2df77854924 | |
| parent | 963a9ecb85f3b2c3d1ad2915ed8f4bcba919d7ae (diff) | |
| parent | 6d2935da17da24f196fa90a4cfe6b9b43bfff927 (diff) | |
| download | rust-c810cd19b210b2e038a111a6d9cc1dd783b20567.tar.gz rust-c810cd19b210b2e038a111a6d9cc1dd783b20567.zip | |
Rollup merge of #101554 - notriddle:notriddle/implemenation-list-h3-span-in-band, r=Dylan-DPC
rustdoc: remove unused CSS `#implementations-list > h3 > span.in-band` This was added in 51f26acaea46afd630fbab4ca441748802d20670 to help with the display of an `<h3>` tag that has a `<span class='in-band'>` inside. The way implementation lists were rendered was changed in 34bd2b845b3acd84c5a9bddae3ff8081c19ec5e9 to have `<code class='in-band'>`, making this CSS unused. Then it was turned into a `<div>` in 9077d540da944c41678a7129e04e7fc5d7e38582 without issue. Finally, the header itself acquired the `in-band` class in 76a3b609d0b93c5d8da5e4e3db37bd03e5cb1c30.
| -rw-r--r-- | src/librustdoc/html/static/css/rustdoc.css | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css index 7665417cb5c..736a4352465 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -1528,10 +1528,6 @@ kbd { cursor: default; } -#implementations-list > h3 > span.in-band { - width: 100%; -} - #main-content > ul { padding-left: 10px; } |
