diff --git a/fichiers/css/personalisation.css b/fichiers/css/personalisation.css index eaa96a9..0ded1a5 100644 --- a/fichiers/css/personalisation.css +++ b/fichiers/css/personalisation.css @@ -57,8 +57,20 @@ body { transform: scale(1, 1); } } -.bouton-flotant.deactivation{ - display: none; + +@keyframes dezoom { + 0% { + transform: scale(1, 1); + } + 100% { + transform: scale(0, 0); + } +} + +.bouton-flotant.desactiver{ + animation-name: dezoom; + animation-duration: .2s; + animation-fill-mode: forwards; } .contour-pastille { diff --git a/fichiers/js/formulaire.js b/fichiers/js/formulaire.js index 1e9d2f1..191acc4 100644 --- a/fichiers/js/formulaire.js +++ b/fichiers/js/formulaire.js @@ -11,10 +11,11 @@ function activationBoutonFlotant(lui) { } else { listedesentree.push(lui.name); }; - console.log(listedesentree); + if (listedesentree.length > 0){ - document.getElementById("enregistement").classList.remove("deactivation"); + document.getElementById("enregistrer-interrupteur").classList.remove("desactiver"); + document.getElementById("enregistrer-interrupteur").style.display = "block"; }else{ - document.getElementById("enregistement").classList.add("deactivation"); + document.getElementById("enregistrer-interrupteur").classList.add("desactiver"); } } diff --git a/pages/visiteurs/formulaire_accueil.php b/pages/visiteurs/formulaire_accueil.php index edef366..47825ae 100644 --- a/pages/visiteurs/formulaire_accueil.php +++ b/pages/visiteurs/formulaire_accueil.php @@ -42,15 +42,17 @@ require_once($_SERVER["DOCUMENT_ROOT"]."/services/fonctions/messages/messages.ph ?>
diff --git a/services/gestion/alias_virtuels.php b/services/gestion/alias_virtuels.php index 139ea9c..24b2ee3 100644 --- a/services/gestion/alias_virtuels.php +++ b/services/gestion/alias_virtuels.php @@ -146,7 +146,7 @@ _HEREDOC_; ?> - + diff --git a/services/gestion/domaines.php b/services/gestion/domaines.php index 2a10743..9288481 100644 --- a/services/gestion/domaines.php +++ b/services/gestion/domaines.php @@ -105,9 +105,9 @@ $liste_domaines = listeDomainesPostfix($pdo);