From 7dfac7fc1685b58c30f24bb72e0f647c45b90981 Mon Sep 17 00:00:00 2001
From: Roan Horning
Date: Wed, 25 Jun 2025 22:36:47 -0400
Subject: [PATCH] Fix upload form layout
Make sure tables cells are vertically aligned to the top of the cells.
---
hub/header.html | 7 +++++++
hub/upload.php | 10 +++++-----
2 files changed, 12 insertions(+), 5 deletions(-)
diff --git a/hub/header.html b/hub/header.html
index c83f366..1fa066e 100644
--- a/hub/header.html
+++ b/hub/header.html
@@ -17,6 +17,13 @@
#list1, #list2, #list3 {
display:none;
}
+ table.upload {
+ border-collapse: separate;
+ border-spacing: 0 0.75rem;
+ }
+ table.upload td {
+ vertical-align: top;
+ }
diff --git a/hub/upload.php b/hub/upload.php
index 7cf4c7c..f0f831b 100644
--- a/hub/upload.php
+++ b/hub/upload.php
@@ -128,13 +128,13 @@ include 'header.html';