Fix upload panel overlap with thumbnail list

This commit is contained in:
dsyoon
2025-12-27 16:08:03 +09:00
parent dafeaa7c44
commit 350b391aee

View File

@@ -100,8 +100,16 @@ div.navigation {
/* The navigation style is set using jQuery so that the javascript specific styles won't be applied unless javascript is enabled. */
}
/* Ensure thumbnail list area clears its floated children (thumbs + pagination) */
#thumbs-list::after {
content: "";
display: block;
clear: both;
}
/* Upload panel under thumbnails */
.upload-panel {
clear: both; /* never overlap floated thumbnails/pagination */
margin-top: 14px;
padding-top: 12px;
border-top: 1px solid #e5e5e5;