From 0e3865618d7554734dd02a23abc3e3464cc9abb8 Mon Sep 17 00:00:00 2001 From: Omar Ahmed Hassan <98468609+omar-ahmed42@users.noreply.github.com> Date: Thu, 5 Dec 2024 13:16:16 +0200 Subject: [PATCH] Fix missing upload button (#2393) 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 4e93840ff..3f96814f9 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; }