Make WordPress Core

Opened 11 hours ago

Closed 10 hours ago

#64650 closed defect (bug) (duplicate)

The button is not displayed because CSS variables are not set.

Reported by: nendeb55's profile nendeb55 Owned by:
Milestone: Priority: normal
Severity: critical Version: trunk
Component: General Keywords:
Focuses: css Cc:

Description (last modified by sabernhardt)

wp-login.php login button
It seems --wp-admin-theme-color is missing.

Previously

.wp-core-ui .button-primary {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
}

Currently

.wp-core-ui .button-primary {
    background: var(--wp-admin-theme-color);
    border-color: var(--wp-admin-theme-color);
    color: #fff;
    text-decoration: none;
    text-shadow: none;
}

WordPress 7.0-alpha-61648
Twenty Twenty-Five v1.4

Change History (1)

#1 @sabernhardt
10 hours ago

  • Description modified (diff)
  • Milestone Awaiting Review deleted
  • Resolution set to duplicate
  • Status changed from new to closed

#64640 is already tracking the CSS variable issue on login and upgrade screens.

Note: See TracTickets for help on using tickets.