Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/wp-includes/css/media-views.css
Original file line number Diff line number Diff line change
Expand Up @@ -1029,6 +1029,15 @@ select#media-attachment-filters ~ select#media-attachment-date-filters {
font-weight: 600;
}

/* Offset by the .describe input height so the overlay does not cover it. */
.wp-core-ui .attachment:has(.describe):not(:has(.filename))::after {
bottom: calc(8px + 40px); /* 8px padding + 40px input height */
}

.wp-core-ui .attachment .describe {
z-index: 10;
}

/* Do not show the aria-label overlay on thumbnails in the gallery selection strip. */
.wp-core-ui .media-selection .attachment::after {
content: none;
Expand Down
Loading