diff options
| author | bors <bors@rust-lang.org> | 2023-09-10 14:43:54 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-09-10 14:43:54 +0000 |
| commit | 8e37c509fda1f7387895e33783cba94ea3960a29 (patch) | |
| tree | 763c91c558be2bedde321bef0c630ff71a4969c4 | |
| parent | 6645a93cef04c23d210b534d0f338e468e1e9bd6 (diff) | |
| parent | 344ac25cbdb34354c820b181cf97922cf7577872 (diff) | |
| download | rust-8e37c509fda1f7387895e33783cba94ea3960a29.tar.gz rust-8e37c509fda1f7387895e33783cba94ea3960a29.zip | |
Auto merge of #115731 - GuillaumeGomez:migrate-gui-test-color-40, r=notriddle
Migrate GUI colors test to original CSS color format Follow-up of https://github.com/rust-lang/rust/pull/111459. r? `@notriddle`
| -rw-r--r-- | tests/rustdoc-gui/search-no-result.goml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/rustdoc-gui/search-no-result.goml b/tests/rustdoc-gui/search-no-result.goml index 46d1856b4d6..e7c64791256 100644 --- a/tests/rustdoc-gui/search-no-result.goml +++ b/tests/rustdoc-gui/search-no-result.goml @@ -21,16 +21,16 @@ define-function: ( call-function: ("check-no-result", { "theme": "ayu", - "link": "rgb(57, 175, 215)", - "link_hover": "rgb(57, 175, 215)", + "link": "#39afd7", + "link_hover": "#39afd7", }) call-function: ("check-no-result", { "theme": "dark", - "link": "rgb(210, 153, 29)", - "link_hover": "rgb(210, 153, 29)", + "link": "#d2991d", + "link_hover": "#d2991d", }) call-function: ("check-no-result", { "theme": "light", - "link": "rgb(56, 115, 173)", - "link_hover": "rgb(56, 115, 173)", + "link": "#3873ad", + "link_hover": "#3873ad", }) |
