Skip to content

Commit 0dfe08c

Browse files
Rollup merge of rust-lang#91179 - GuillaumeGomez:a-color, r=jsha
Fix more <a> color Fixes rust-lang#91175. Another bug I saw is: ![Screenshot from 2021-11-24 11-41-27](https://user-images.githubusercontent.com/3050060/143239845-f173cfeb-8f5c-4215-a5af-b71d4e1bcd84.png) I fixed it as well. r? `@jsha`
2 parents eed5f31 + 0ba92fe commit 0dfe08c

File tree

5 files changed

+35
-8
lines changed

5 files changed

+35
-8
lines changed

src/librustdoc/html/static/css/themes/ayu.css

+2
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,8 @@ a {
218218
}
219219
a.srclink,
220220
a#toggle-all-docs,
221+
a.anchor,
222+
.section-header a,
221223
#source-sidebar a,
222224
pre.rust a,
223225
.sidebar a,

src/librustdoc/html/static/css/themes/dark.css

+2
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,8 @@ a {
180180
}
181181
a.srclink,
182182
a#toggle-all-docs,
183+
a.anchor,
184+
.section-header a,
183185
#source-sidebar a,
184186
pre.rust a,
185187
.sidebar a,

src/librustdoc/html/static/css/themes/light.css

+2
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,8 @@ a {
175175
}
176176
a.srclink,
177177
a#toggle-all-docs,
178+
a.anchor,
179+
.section-header a,
178180
#source-sidebar a,
179181
pre.rust a,
180182
.sidebar a,

src/test/rustdoc-gui/anchors.goml

+20-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,29 @@
1+
// This test is to ensure that the anchors (`§`) have the expected color.
12
goto: file://|DOC_PATH|/test_docs/struct.HeavilyDocumentedStruct.html
23

4+
// This is needed to ensure that the text color is computed.
5+
show-text: true
6+
37
// Set the theme to light.
48
local-storage: {"rustdoc-theme": "light", "rustdoc-use-system-theme": "false"}
59
// We reload the page so the local storage settings are being used.
610
reload:
711

8-
assert-css: ("#toggle-all-docs", {"color": "rgba(0, 0, 0, 0)"})
9-
assert-css: (".fqn .in-band a:nth-of-type(1)", {"color": "rgba(0, 0, 0, 0)"})
10-
assert-css: (".fqn .in-band a:nth-of-type(2)", {"color": "rgba(0, 0, 0, 0)"})
11-
assert-css: (".srclink", {"color": "rgba(0, 0, 0, 0)"})
12-
assert-css: (".srclink", {"color": "rgba(0, 0, 0, 0)"})
12+
assert-css: ("#toggle-all-docs", {"color": "rgb(0, 0, 0)"})
13+
assert-css: (".fqn .in-band a:nth-of-type(1)", {"color": "rgb(0, 0, 0)"})
14+
assert-css: (".fqn .in-band a:nth-of-type(2)", {"color": "rgb(173, 68, 142)"})
15+
assert-css: (".srclink", {"color": "rgb(0, 0, 0)"})
16+
assert-css: (".srclink", {"color": "rgb(0, 0, 0)"})
17+
18+
assert-css: ("#top-doc-prose-title", {"color": "rgb(0, 0, 0)"})
19+
20+
assert-css: (".sidebar a", {"color": "rgb(0, 0, 0)"})
21+
assert-css: (".in-band a", {"color": "rgb(0, 0, 0)"})
1322

14-
assert-css: ("#top-doc-prose-title", {"color": "rgba(0, 0, 0, 0)"})
23+
// We move the cursor over the "Implementations" title so the anchor is displayed.
24+
move-cursor-to: "h2#implementations"
25+
assert-css: ("h2#implementations a.anchor", {"color": "rgb(0, 0, 0)"})
1526

16-
assert-css: (".sidebar a", {"color": "rgba(0, 0, 0, 0)"})
17-
assert-css: (".in-band a", {"color": "rgba(0, 0, 0, 0)"})
27+
// Same thing with the impl block title.
28+
move-cursor-to: "#impl"
29+
assert-css: ("#impl a.anchor", {"color": "rgb(0, 0, 0)"})

src/test/rustdoc-gui/headers-color.goml

+9
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ assert-css: ("#impl", {"color": "rgb(197, 197, 197)", "background-color": "rgba(
1717
goto: file://|DOC_PATH|/test_docs/struct.Foo.html#method.must_use
1818
assert-css: ("#method\.must_use", {"color": "rgb(197, 197, 197)", "background-color": "rgba(255, 236, 164, 0.06)"}, ALL)
1919

20+
goto: file://|DOC_PATH|/test_docs/index.html
21+
assert-css: (".section-header a", {"color": "rgb(197, 197, 197)"}, ALL)
22+
2023
// Dark theme
2124
local-storage: {"rustdoc-theme": "dark", "rustdoc-preferred-dark-theme": "dark", "rustdoc-use-system-theme": "false"}
2225
goto: file://|DOC_PATH|/test_docs/struct.Foo.html
@@ -30,6 +33,9 @@ assert-css: ("#impl", {"color": "rgb(221, 221, 221)", "background-color": "rgb(7
3033
goto: file://|DOC_PATH|/test_docs/struct.Foo.html#method.must_use
3134
assert-css: ("#method\.must_use", {"color": "rgb(221, 221, 221)", "background-color": "rgb(73, 74, 61)"}, ALL)
3235

36+
goto: file://|DOC_PATH|/test_docs/index.html
37+
assert-css: (".section-header a", {"color": "rgb(221, 221, 221)"}, ALL)
38+
3339
// Light theme
3440
local-storage: {"rustdoc-theme": "light", "rustdoc-use-system-theme": "false"}
3541
reload:
@@ -44,3 +50,6 @@ assert-css: ("#impl", {"color": "rgb(0, 0, 0)", "background-color": "rgb(253, 25
4450

4551
goto: file://|DOC_PATH|/test_docs/struct.Foo.html#method.must_use
4652
assert-css: ("#method\.must_use", {"color": "rgb(0, 0, 0)", "background-color": "rgb(253, 255, 211)"}, ALL)
53+
54+
goto: file://|DOC_PATH|/test_docs/index.html
55+
assert-css: (".section-header a", {"color": "rgb(0, 0, 0)"}, ALL)

0 commit comments

Comments
 (0)