fix: restore Gitea 1.26 JS bundle and exclude checkboxes from input styling

Gitea 1.26.0 moved the main JS bundle load to base/footer.tmpl via
ScriptImport, which our custom footer override was stripping out. This
caused all JavaScript-dependent features (dropdowns, etc.) to break.

Also excludes checkbox and radio inputs from the custom form input
styling rules, as Gitea 1.26 reworked checkboxes to use appearance:none
with a CSS mask-image approach that conflicts with our border-radius and
background overrides.
This commit is contained in:
2026-04-20 20:39:59 -07:00
committed by Naomi Carrigan
parent 109ca76a7f
commit 374934ba9e
4 changed files with 13 additions and 8 deletions
+2 -1
View File
@@ -20,4 +20,5 @@
clearInterval(interval);
}
}, 1000);
</script>
</script>
{{ScriptImport "js/index.js" "module"}}