-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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] Replace module list items ul
/li
with dl
/dd
/dt
elements
#135641
Conversation
Some changes occurred in HTML/CSS/JS. cc @GuillaumeGomez, @jsha |
This comment has been minimized.
This comment has been minimized.
<dl class="item-table">
<dt>NAME</dt>
<dd class="docblock-short">THE DOC</dd>
</dl> Do we still need |
I suppose we don't indeed. |
6b65826
to
72a49d4
Compare
Updated online docs and removed |
This comment has been minimized.
This comment has been minimized.
72a49d4
to
6fec5e0
Compare
Forgot to rebase to get changes from #135499. So now done, all updated as well. |
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.
We probably don't want to style <dd>
and <dt>
tags within the docblocks.
@@ -242,7 +242,7 @@ h1, h2, h3, h4, h5, h6, | |||
.mobile-topbar, | |||
.search-input, | |||
.search-results .result-name, | |||
.item-name > a, | |||
dt > a, |
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.
dt > a, | |
.item-table dt > a, |
@@ -385,11 +385,11 @@ details:not(.toggle) summary { | |||
code, pre, .code-header, .type-signature { | |||
font-family: "Source Code Pro", monospace; | |||
} | |||
.docblock code, .docblock-short code { | |||
.docblock code, dd code { |
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.
.docblock code, dd code { | |
.docblock code, .item-table dd code { |
border-radius: 3px; | ||
padding: 0 0.125em; | ||
} | ||
.docblock pre code, .docblock-short pre code { | ||
.docblock pre code, dd pre code { |
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.
.docblock pre code, dd pre code { | |
.docblock pre code, .item-table dd pre code { |
@@ -887,13 +887,13 @@ both the code example and the line numbers, so we need to remove the radius in t | |||
text-align: center; | |||
} | |||
|
|||
.docblock-short { | |||
dd { |
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.
dd { | |
.item-table dd { |
overflow-wrap: break-word; | ||
overflow-wrap: anywhere; | ||
} | ||
/* Wrap non-pre code blocks (`text`) but not (```text```). */ | ||
.docblock :not(pre) > code, | ||
.docblock-short code { | ||
dd code { |
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.
dd code { | |
.item-table dd code { |
@@ -938,7 +938,7 @@ rustdoc-toolbar { | |||
min-height: 60px; | |||
} | |||
|
|||
.docblock code, .docblock-short code, | |||
.docblock code, dd code, |
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.
.docblock code, dd code, | |
.docblock code, .item-table dd code, |
@@ -964,7 +964,7 @@ pre, .rustdoc.src .example-wrap, .example-wrap .src-line-numbers { | |||
background: var(--table-alt-row-background-color); | |||
} | |||
|
|||
.docblock .stab, .docblock-short .stab, .docblock p code { | |||
.docblock .stab, dd .stab, .docblock p code { |
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.
.docblock .stab, dd .stab, .docblock p code { | |
.docblock .stab, .item-table dd .stab, .docblock p code { |
@@ -1069,7 +1069,7 @@ because of the `[-]` element which would overlap with it. */ | |||
.example-wrap .rust a:hover, | |||
.all-items a:hover, | |||
.docblock a:not(.scrape-help):not(.tooltip):hover:not(.doc-anchor), | |||
.docblock-short a:not(.scrape-help):not(.tooltip):hover, | |||
dd a:not(.scrape-help):not(.tooltip):hover, |
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.
dd a:not(.scrape-help):not(.tooltip):hover, | |
.item-table dd a:not(.scrape-help):not(.tooltip):hover, |
6fec5e0
to
b3865d1
Compare
Good catch! Updated. |
@bors r+ rollup |
…iaskrgr Rollup of 4 pull requests Successful merges: - rust-lang#135641 ([rustdoc] Replace module list items `ul`/`li` with `dl`/`dd`/`dt` elements) - rust-lang#135703 (Disallow `A { .. }` if `A` has no fields) - rust-lang#135705 (Consolidate ad-hoc MIR lints into real pass-manager-based MIR lints) - rust-lang#135708 (Some random compiler nits) Failed merges: - rust-lang#135685 (Remove unused `item-row` CSS class) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#135641 - GuillaumeGomez:items-list, r=notriddle [rustdoc] Replace module list items `ul`/`li` with `dl`/`dd`/`dt` elements `@hywan` suggested that rustdoc should use `dl`,`dt` and `dd` HTML tags for listing items on module pages as it matches better what this is (an item and optionally its description). This is a very good idea so here is the implementation. Also nice side-effect of this change: it reduces a bit the generated HTML since we go from: This PR shouldn't impact page appearance. ```html <ul class="item-table"> <li> <div class="item-name">NAME</div> <div class="desc docblock-short">THE DOC</div> </li> </ul> ``` to: ```html <dl class="item-table"> <dt>NAME</dt> <dd>THE DOC</dd> </dl> ``` You can test it [here](https://rustdoc.crud.net/imperio/items-list/std/index.html). r? `@notriddle`
@Hywan suggested that rustdoc should use
dl
,dt
anddd
HTML tags for listing items on module pages as it matches better what this is (an item and optionally its description). This is a very good idea so here is the implementation.Also nice side-effect of this change: it reduces a bit the generated HTML since we go from:
This PR shouldn't impact page appearance.
to:
You can test it here.
r? @notriddle