up styles

This commit is contained in:
Tykayn 2025-06-04 00:46:46 +02:00 committed by tykayn
parent b1f6433b7d
commit 0169b9a1a4
7 changed files with 78 additions and 57 deletions

View file

@ -269,7 +269,7 @@ document.addEventListener('DOMContentLoaded', () => {
const checkboxLabel = document.createElement('label');
checkboxLabel.htmlFor = `${prefix}-active`;
checkboxLabel.classList.add('form-check-label');
checkboxLabel.textContent = 'Activer cette plage';
checkboxLabel.textContent = '';
checkboxContainer.appendChild(checkbox);
checkboxContainer.appendChild(checkboxLabel);
@ -543,7 +543,7 @@ document.addEventListener('DOMContentLoaded', () => {
form.addEventListener('submit', check_validity);
updateCompletionProgress()
}
document.addEventListener('DOMContentLoaded', updateCompletionProgress);
updateCompletionProgress();
// Focus sur le premier champ texte au chargement
const firstTextInput = document.querySelector('input.form-control');