From 2011b4c95b7ad90cc326865b51b31a6ee0cea0c9 Mon Sep 17 00:00:00 2001 From: Omar Ahmed Hassan Date: Thu, 5 Dec 2024 12:54:00 +0200 Subject: [PATCH] Fix missing upload button The code snippet `input[type=file]{ display: none;}` was unintentionally hiding the upload button, to fix this, it was changed to only target input within `.input-container` --- src/main/resources/static/css/fileSelect.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/static/css/fileSelect.css b/src/main/resources/static/css/fileSelect.css index 4e93840ff46..3f96814f96b 100644 --- a/src/main/resources/static/css/fileSelect.css +++ b/src/main/resources/static/css/fileSelect.css @@ -84,7 +84,7 @@ z-index: 2; } -input[type="file"] { +.input-container input[type="file"] { display: none; }