diff options
| author | Michael Howell <michael@notriddle.com> | 2022-11-14 14:11:30 -0700 |
|---|---|---|
| committer | Michael Howell <michael@notriddle.com> | 2022-11-14 14:46:53 -0700 |
| commit | 8b346754eda9e9cddeeb50b1103d461cf3196843 (patch) | |
| tree | e4fcf81b4d506e9019399d8dd4b40d28856b42c9 /src/librustdoc/html | |
| parent | 96ddd32c4bfb1d78f0cd03eb068b1710a8cebeef (diff) | |
| download | rust-8b346754eda9e9cddeeb50b1103d461cf3196843.tar.gz rust-8b346754eda9e9cddeeb50b1103d461cf3196843.zip | |
rustdoc: remove no-op CSS `.popover { font-size: 1rem }`
This rule was added in cc4f804829ae because the help popover inherited the font-size from the help button "?" icon. It doesn't inherit this any more, because it was moved from being nested inside the link to sharing a wrapper DIV with it.
Diffstat (limited to 'src/librustdoc/html')
| -rw-r--r-- | src/librustdoc/html/static/css/rustdoc.css | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css index 3f295b96dc5..b83bb405dc2 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -920,7 +920,6 @@ so that we can apply CSS-filters to change the arrow color in themes */ } .popover { - font-size: 1rem; position: absolute; right: 0; z-index: 2; @@ -928,7 +927,6 @@ so that we can apply CSS-filters to change the arrow color in themes */ margin-top: 7px; border-radius: 3px; border: 1px solid var(--border-color); - font-size: 1rem; --popover-arrow-offset: 11px; } |
