diff options
| author | Michael Howell <michael@notriddle.com> | 2022-10-24 11:39:19 -0700 |
|---|---|---|
| committer | Michael Howell <michael@notriddle.com> | 2022-10-24 11:39:19 -0700 |
| commit | f0f0a7dbc29c589a4bddf0aa1e208b550e1b2fad (patch) | |
| tree | 6acd37addae8f77de3e6edbbf10a8d9e5059b3a7 | |
| parent | c07a6a9c0c6c571d535de74d7ec28469fba46e37 (diff) | |
rustdoc: remove redundant CSS `a.test-arrow:hover`
In 4b402dbe690dd00f567542ca9e41042826a168b5, when this rule was added, it was overriding a rule that made all links in docblock get an underline when hovered. This became redundant when, after reordering the rules, 7585632052298f9c84cc12ac5afcb23786ae1d3d changed the pro-underline rule to exclude the test-arrow link anyway.
| -rw-r--r-- | src/librustdoc/html/static/css/rustdoc.css | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css index 293c9787609..91a4e9ca2d9 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -1233,9 +1233,6 @@ a.test-arrow { .example-wrap:hover .test-arrow { visibility: visible; } -a.test-arrow:hover { - text-decoration: none; -} .code-attribute { font-weight: 300; |
