Skip to content

Commit 543046e

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. Props audrasjb, darshitrajyaguru97, dhrumilk, hbhalodia, huzaifaalmesbah, ismail0071, mikinc860, pooja-n, shailu25, sumitsingh, vishitshah, wildworks Fixes #64962. See #64308. Built from https://develop.svn.wordpress.org/trunk@62230 git-svn-id: http://core.svn.wordpress.org/trunk@61510 1a063a9b-81f0-0310-95a4-ce76da25c4cd
1 parent a7d2707 commit 543046e

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

wp-admin/css/install-rtl.css

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

1919
a {
20-
color: #2271b1;
20+
color: var(--wp-admin-theme-color);
2121
}
2222

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

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

wp-admin/css/install-rtl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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 */

0 commit comments

Comments
 (0)