diff options
| author | Guillaume Gomez <guillaume.gomez@huawei.com> | 2021-09-12 16:33:57 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume.gomez@huawei.com> | 2021-09-12 16:34:47 +0200 |
| commit | 6a2f500d8711b642d412ee7ce4d29af24f702223 (patch) | |
| tree | f0ac9cb3533baefdb18bc7ff2901d8677d4b788f | |
| parent | 9ef27bf7dc50a8b51435579b4f2e86f7ee3f7a94 (diff) | |
| download | rust-6a2f500d8711b642d412ee7ce4d29af24f702223.tar.gz rust-6a2f500d8711b642d412ee7ce4d29af24f702223.zip | |
Fix invalid background for jump-to-def links in source code pages
| -rw-r--r-- | src/librustdoc/html/static/css/themes/ayu.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/static/css/themes/ayu.css b/src/librustdoc/html/static/css/themes/ayu.css index f9ddef4120b..eada8f4a04d 100644 --- a/src/librustdoc/html/static/css/themes/ayu.css +++ b/src/librustdoc/html/static/css/themes/ayu.css @@ -217,7 +217,7 @@ a { color: #c5c5c5; } body.source .example-wrap pre.rust a { - background: #c5c5c5; + background: #333; } .docblock:not(.type-decl) a:not(.srclink):not(.test-arrow), |
