Make WordPress Core


Ignore:
Timestamp:
10/04/2025 12:45:11 AM (2 months ago)
Author:
joedolson
Message:

Upgrade/Install: WordPress text shows over logo on tab.

On the upgrade and repair screens, the logo link to wordpress.org was hidden using negative text-indent. This method makes the link impossible to click on using a mouse, and causes the text to overlay the image on keyboard focus.

On the install screen, if PHP is not running, the styles are not applied, leaving an unstyled link.

Remove the links for consistency with other screens following r47745.

Props johnbillion, sabernhardt, joedolson.
Fixes #63950.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/maint/repair.php

    r60106 r60898  
    2222</head>
    2323<body class="wp-core-ui">
    24 <p id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>"><?php _e( 'WordPress' ); ?></a></p>
     24<p id="logo"><?php _e( 'WordPress' ); ?></p>
    2525
    2626<?php
Note: See TracChangeset for help on using the changeset viewer.