Make WordPress Core

Changeset 62236


Ignore:
Timestamp:
04/15/2026 06:44:02 AM (8 hours ago)
Author:
audrasjb
Message:

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.

Location:
branches/7.0
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/7.0

  • branches/7.0/src/wp-admin/css/install.css

    r62164 r62236  
    1717
    1818a {
    19     color: #2271b1;
     19    color: var(--wp-admin-theme-color);
    2020}
    2121
    2222a:hover,
    2323a:active {
    24     color: #135e96;
     24    color: var(--wp-admin-theme-color-darker-20);
    2525}
    2626
    2727a: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);
  • branches/7.0/src/wp-includes/functions.php

    r62054 r62236  
    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;
Note: See TracChangeset for help on using the changeset viewer.