From 350b391aeeedc43c4247487a22f7cec312cd5ee5 Mon Sep 17 00:00:00 2001 From: dsyoon Date: Sat, 27 Dec 2025 16:08:03 +0900 Subject: [PATCH] Fix upload panel overlap with thumbnail list --- css/galleriffic-2.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/css/galleriffic-2.css b/css/galleriffic-2.css index 44f1aac..6a34447 100644 --- a/css/galleriffic-2.css +++ b/css/galleriffic-2.css @@ -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;