Skip to content

Commit e0f04ef

Browse files
authored
Rollup merge of rust-lang#114509 - GuillaumeGomez:migrate-gui-test-color-28, r=notriddle
Migrate GUI colors test to original CSS color format Follow-up of rust-lang#111459. r? `@notriddle`
2 parents 83d84ff + 9625fc5 commit e0f04ef

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Diff for: tests/rustdoc-gui/scrape-examples-toggle.goml

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@ define-function: (
2828

2929
call-function: ("check-color", {
3030
"theme": "ayu",
31-
"toggle_line_color": "rgb(153, 153, 153)",
32-
"toggle_line_hover_color": "rgb(197, 197, 197)",
31+
"toggle_line_color": "#999",
32+
"toggle_line_hover_color": "#c5c5c5",
3333
})
3434
call-function: ("check-color", {
3535
"theme": "dark",
36-
"toggle_line_color": "rgb(153, 153, 153)",
37-
"toggle_line_hover_color": "rgb(197, 197, 197)",
36+
"toggle_line_color": "#999",
37+
"toggle_line_hover_color": "#c5c5c5",
3838
})
3939
call-function: ("check-color", {
4040
"theme": "light",
41-
"toggle_line_color": "rgb(204, 204, 204)",
42-
"toggle_line_hover_color": "rgb(153, 153, 153)",
41+
"toggle_line_color": "#ccc",
42+
"toggle_line_hover_color": "#999",
4343
})
4444

4545
// Toggling all docs will close additional examples

0 commit comments

Comments
 (0)