From 95180a341dc1c5204f4b693d9a432fd00e9cedb4 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 15 Apr 2026 12:40:40 +0200 Subject: [PATCH] refactor(frontend): drop unused Bulma form/file partial import Every file input in the codebase is hidden (via class="is-hidden" or scoped display:none) and triggered programmatically by a custom XButton. None of Bulma's .file / .file-label / .file-cta / .file-input / .file-name / .file-icon classes are used anywhere in .vue files, so the partial is dead code. --- frontend/src/styles/global.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/styles/global.scss b/frontend/src/styles/global.scss index 90ab3fc65..c543a8dff 100644 --- a/frontend/src/styles/global.scss +++ b/frontend/src/styles/global.scss @@ -37,7 +37,7 @@ @import "bulma-css-variables/sass/form/input-textarea"; @import "bulma-css-variables/sass/form/checkbox-radio"; @import "bulma-css-variables/sass/form/select"; -@import "bulma-css-variables/sass/form/file"; +// @import "bulma-css-variables/sass/form/file"; // not used; every file input is hidden and triggered via a custom button @import "bulma-css-variables/sass/form/tools";