Make WordPress Core

Changeset 62104


Ignore:
Timestamp:
03/24/2026 04:34:07 PM (2 days ago)
Author:
joedolson
Message:

Media: Fix visual issues in media library grid view.

Populate the uploading progress bar visual naming element. Provides a nominal accessibility improvement, in that long uploads can be found and recognized during the upload process. Fix an alignment issue in the bulk select button. Follow up to [61757].

Props siliconforks, presskopp, ozgursar, joedolson.
Fixes #64883.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/js/media/views/attachment.js

    r59035 r62104  
    2222            'tabIndex':     0,
    2323            'role':         'checkbox',
    24             'aria-label':   this.model.get( 'title' ),
     24            'aria-label':   this.model.get( 'title' ) || wp.i18n.__( 'uploading...' ),
    2525            'aria-checked': false,
    2626            'data-id':      this.model.get( 'id' )
  • trunk/src/wp-includes/css/media-views.css

    r62098 r62104  
    353353    flex-wrap: wrap;
    354354    gap: 12px;
     355    align-items: end;
    355356}
    356357
Note: See TracChangeset for help on using the changeset viewer.