From f72697b4d39fb11a1ebd5208a5319b03933b821b Mon Sep 17 00:00:00 2001 From: Michael Howell Date: Mon, 29 Aug 2022 17:25:43 -0700 Subject: [PATCH] rustdoc: remove unused CSS selectors for `.table-display` This class was added to support the function signature [src] lockup. That lockup was changed in 34bd2b845b3acd84c5a9bddae3ff8081c19ec5e9 to use flexbox instead, leaving these selectors unused. --- src/librustdoc/html/static/css/rustdoc.css | 37 ++-------------------- 1 file changed, 2 insertions(+), 35 deletions(-) diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css index deed6eaf0cb6b..c117e3ac40dab 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -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; } @@ -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; @@ -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; } @@ -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%; }