diff options
| author | Ralf Jung <post@ralfj.de> | 2020-05-21 21:10:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-21 21:10:45 +0200 |
| commit | fc729d0c60647743306a7cbd1fc4e9a88ccc2fe9 (patch) | |
| tree | 96e20a19303d60ad300d9be02720568bce29b02a | |
| parent | 503a2fde946905f7dbae28f81974ab90531db908 (diff) | |
| parent | 20b499c60a5778b9ad00c807fe33d225c36c095e (diff) | |
| download | rust-fc729d0c60647743306a7cbd1fc4e9a88ccc2fe9.tar.gz rust-fc729d0c60647743306a7cbd1fc4e9a88ccc2fe9.zip | |
Rollup merge of #72421 - GuillaumeGomez:fix-impl-hover-anchor, r=kinnison
Fix anchor display when hovering impl A little gif for the fixed behaviour:  r? @kinnison
| -rw-r--r-- | src/librustdoc/html/static/rustdoc.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/rustdoc.css b/src/librustdoc/html/static/rustdoc.css index ab524751723..2cb3347135c 100644 --- a/src/librustdoc/html/static/rustdoc.css +++ b/src/librustdoc/html/static/rustdoc.css @@ -625,7 +625,7 @@ a { display: initial; } -.in-band:hover > .anchor { +.in-band:hover > .anchor, .impl:hover > .anchor { display: inline-block; position: absolute; } |
