diff options
| author | Michael Goulet <michael@errs.io> | 2023-01-20 21:33:23 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-20 21:33:23 -0500 |
| commit | 7565b9aa4a8707a265e0111f40c14bbc8a3e42df (patch) | |
| tree | c5bf15e6c8b13acfb077d9c2fb312a3c195b8f58 | |
| parent | 3452104715281e1e52791dfe7c94622852ab1143 (diff) | |
| parent | 05889fc52e8d18f96df659660eff9cd5e9ff3f08 (diff) | |
| download | rust-7565b9aa4a8707a265e0111f40c14bbc8a3e42df.tar.gz rust-7565b9aa4a8707a265e0111f40c14bbc8a3e42df.zip | |
Rollup merge of #107095 - notriddle:notriddle/sidebar-current, r=GuillaumeGomez
rustdoc: remove redundant CSS selector `.sidebar .current` Since the current sidebar item is already a link, it doesn't do anything.
| -rw-r--r-- | src/librustdoc/html/static/css/rustdoc.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css index a08b8d89db6..a93f60da2ad 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -497,7 +497,7 @@ ul.block, .block li { padding-left: 24px; } -.sidebar a, .sidebar .current { +.sidebar a { color: var(--sidebar-link-color); } .sidebar .current, |
