diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-08-06 03:56:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-06 03:56:10 +0200 |
| commit | e0f04efccbdbbb7df476a607362c9b1ba095c5a2 (patch) | |
| tree | 034071e690e17a329b4d1cb0fe18c6e2918fabb5 /tests/rustdoc-gui | |
| parent | 83d84ffdd5efc9ea00e959b2c73a7f897673ee68 (diff) | |
| parent | 9625fc583949e42234f11377cefa2f6115f18c11 (diff) | |
| download | rust-e0f04efccbdbbb7df476a607362c9b1ba095c5a2.tar.gz rust-e0f04efccbdbbb7df476a607362c9b1ba095c5a2.zip | |
Rollup merge of #114509 - GuillaumeGomez:migrate-gui-test-color-28, r=notriddle
Migrate GUI colors test to original CSS color format Follow-up of https://github.com/rust-lang/rust/pull/111459. r? `@notriddle`
Diffstat (limited to 'tests/rustdoc-gui')
| -rw-r--r-- | tests/rustdoc-gui/scrape-examples-toggle.goml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/rustdoc-gui/scrape-examples-toggle.goml b/tests/rustdoc-gui/scrape-examples-toggle.goml index 9cec6d2bbe8..f742b3186e5 100644 --- a/tests/rustdoc-gui/scrape-examples-toggle.goml +++ b/tests/rustdoc-gui/scrape-examples-toggle.goml @@ -28,18 +28,18 @@ define-function: ( call-function: ("check-color", { "theme": "ayu", - "toggle_line_color": "rgb(153, 153, 153)", - "toggle_line_hover_color": "rgb(197, 197, 197)", + "toggle_line_color": "#999", + "toggle_line_hover_color": "#c5c5c5", }) call-function: ("check-color", { "theme": "dark", - "toggle_line_color": "rgb(153, 153, 153)", - "toggle_line_hover_color": "rgb(197, 197, 197)", + "toggle_line_color": "#999", + "toggle_line_hover_color": "#c5c5c5", }) call-function: ("check-color", { "theme": "light", - "toggle_line_color": "rgb(204, 204, 204)", - "toggle_line_hover_color": "rgb(153, 153, 153)", + "toggle_line_color": "#ccc", + "toggle_line_hover_color": "#999", }) // Toggling all docs will close additional examples |
