Skip to content

Commit 8974b21

Browse files
committed
Upgrade/Install: Use new default admin color scheme for links on the setup screen.
This changeset updates the link colors on the setup screen and the default wp_die() fallback styles to use the new default admin color scheme. Reviewed by audrasjb, wildworks. Merges [62230] to the 7.0 branch. Props audrasjb, darshitrajyaguru97, dhrumilk, hbhalodia, huzaifaalmesbah, ismail0071, mikinc860, pooja-n, shailu25, sumitsingh, vishitshah, wildworks Fixes #64962. See #64308. git-svn-id: https://develop.svn.wordpress.org/branches/7.0@62236 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 068f80c commit 8974b21

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/wp-admin/css/install.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ body {
1616
}
1717

1818
a {
19-
color: #2271b1;
19+
color: var(--wp-admin-theme-color);
2020
}
2121

2222
a:hover,
2323
a:active {
24-
color: #135e96;
24+
color: var(--wp-admin-theme-color-darker-20);
2525
}
2626

2727
a:focus {
28-
color: #043959;
28+
color: var(--wp-admin-theme-color-darker-20);
2929
border-radius: 2px;
3030
box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9);
3131
/* Only visible in Windows High Contrast mode */

src/wp-includes/functions.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3974,14 +3974,14 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
39743974
font-size: 14px ;
39753975
}
39763976
a {
3977-
color: #2271b1;
3977+
color: #3858e9;
39783978
}
39793979
a:hover,
39803980
a:active {
3981-
color: #135e96;
3981+
color: #183ad6;
39823982
}
39833983
a:focus {
3984-
color: #043959;
3984+
color: #183ad6;
39853985
box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9);
39863986
outline: 2px solid transparent;
39873987
}

0 commit comments

Comments
 (0)