diff options
| author | Michael Howell <michael@notriddle.com> | 2022-11-22 08:21:10 -0700 |
|---|---|---|
| committer | Michael Howell <michael@notriddle.com> | 2022-11-22 08:21:10 -0700 |
| commit | 5fe6599db2e49a2a999d787e3e79a6500964b1bb (patch) | |
| tree | 3db0141a91c9a1304d6f0fcde05594fd7e5d44b5 | |
| parent | b7463e8bdb7b039e75241dcc4ea65bbd24d5c608 (diff) | |
| download | rust-5fe6599db2e49a2a999d787e3e79a6500964b1bb.tar.gz rust-5fe6599db2e49a2a999d787e3e79a6500964b1bb.zip | |
rustdoc: remove no-op CSS `.popover::before { display: inline-block }`
Since this box is absolutely positioned, its display type is [blockified] anyway. We just need to make sure it isn't `display: none`. [blockified]: https://www.w3.org/TR/css-display-3/#transformations
| -rw-r--r-- | src/librustdoc/html/static/css/rustdoc.css | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css index 2335f3ff1ce..a5ada691ec2 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -932,7 +932,6 @@ so that we can apply CSS-filters to change the arrow color in themes */ right: var(--popover-arrow-offset); border: solid var(--border-color); border-width: 1px 1px 0 0; - display: inline-block; padding: 4px; transform: rotate(-45deg); top: -5px; |
