Uploads: Fix media uploader styling issue for long filenames.

This changeset resolves an issue where long filenames in the media uploader modal would overflow their container. By adding `word-break: break-all;` to the `.upload-error-filename` class, filenames now properly break into multiple lines.

Props kharisblank, audrasjb, sainathpoojary.
Fixes #62980.



git-svn-id: https://develop.svn.wordpress.org/trunk@59834 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jb Audras 2025-02-17 21:59:15 +00:00
parent a16dd4f007
commit cc82ccd756

View File

@ -1421,6 +1421,7 @@
.upload-errors .upload-error-filename {
font-weight: 600;
word-break: break-all;
}
.upload-errors .upload-error-message {