Skip to content

Commit

Permalink
Rollup merge of #101176 - notriddle:notriddle/rustdoc-table-display, …
Browse files Browse the repository at this point in the history
…r=jsha

rustdoc: remove unused CSS selectors for `.table-display`

This class was added to support the function signature [src] lockup. That lockup was changed in 34bd2b8 to use flexbox instead, leaving these selectors unused.

Continuation of #101046
  • Loading branch information
Dylan-DPC committed Aug 30, 2022
2 parents 948aeff + f72697b commit c467370
Showing 1 changed file with 2 additions and 35 deletions.
37 changes: 2 additions & 35 deletions src/librustdoc/html/static/css/rustdoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ pre, .rustdoc.source .example-wrap {
top: inherit;
}

.content table:not(.table-display) {
.content table {
border-spacing: 0 5px;
}
.content td { vertical-align: top; }
Expand Down Expand Up @@ -763,15 +763,9 @@ pre, .rustdoc.source .example-wrap {
margin-left: 20px;
margin-top: -34px;
}
.content .docblock >.impl-items .table-display {
margin: 0;
}
.content .docblock >.impl-items table td {
padding: 0;
}
.content .docblock > .impl-items .table-display {
border: none;
}

.item-info {
display: block;
Expand Down Expand Up @@ -1563,33 +1557,6 @@ kbd {
width: 100%;
}

.table-display {
width: 100%;
border: 0;
border-collapse: collapse;
border-spacing: 0;
font-size: 1rem;
}

.table-display tr td:first-child {
padding-right: 0;
}

.table-display tr td:last-child {
float: right;
}
.table-display .out-of-band {
position: relative;
font-size: 1.125rem;
display: block;
}

.table-display td:hover .anchor {
display: block;
top: 2px;
left: -5px;
}

#main-content > ul {
padding-left: 10px;
}
Expand Down Expand Up @@ -2081,7 +2048,7 @@ in storage.js plus the media query with (min-width: 701px)
height: 73px;
}

#main-content > table:not(.table-display) td {
#main-content > table td {
word-break: break-word;
width: 50%;
}
Expand Down

0 comments on commit c467370

Please sign in to comment.