diff --git a/CHANGES.md b/CHANGES.md index 94aff948..ff18b38a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,7 @@ - Modifications : - Thème, bannière : nouvelle option de hauteur calculée à partir de la dimension de l'image sélectionnée. - Thème, bannière : informations sur l'image sélectionnée (largeur et hauteur). + - Thème, pied de page : réactivation de l'aperçu. - Corrections : - Thème, bannière : problème empêchant la bannière d'être cliquable lorsque la hauteur "responsive" de la bannière était sélectionnée. - Mise à jour : @@ -15,7 +16,7 @@ ## version 9.2.09 - Corrections : - Module Formulaire, erreur lors de l'envoi d'un premier formulaire - - Thème Footer , désactivation de l'aperçu du texte personnalisé + - Thème Pied de page , désactivation de l'aperçu du texte personnalisé ## Version 9.2.08 - Correction : diff --git a/core/core.php b/core/core.php index 1dfd96f4..cd0c3c3b 100644 --- a/core/core.php +++ b/core/core.php @@ -1153,7 +1153,7 @@ class core extends common { // Pied de page $colors = helper::colorVariants($this->getData(['theme', 'footer', 'backgroundColor'])); if($this->getData(['theme', 'footer', 'margin'])) { - $css .= 'footer{margin:0 10px 10px;padding: 0px 10px;}'; + $css .= 'footer{margin: 10px;padding: 10px;}'; } else { $css .= 'footer{margin:0;padding:0}'; } @@ -1161,12 +1161,6 @@ class core extends common { $css .= 'footer{background-color:' . $colors['normal'] . ';color:' . $this->getData(['theme', 'footer', 'textColor']) . '}'; $css .= 'footer a{color:' . $this->getData(['theme', 'footer', 'textColor']) . '}'; $css .= 'footer #footersite > div {margin:' . $this->getData(['theme', 'footer', 'height']) . ' 0}'; - $css .= 'footer #footerbody > div {margin:' . $this->getData(['theme', 'footer', 'height']) . ' 0}'; - $css .= "footer #footersite > div {padding:0}"; - $css .= "footer #footerbody > div {padding:0}"; - $css .= '#footerFontText > p {margin-top: 0; margin-bottom: 0;}'; - //$css .= '#footersiteLeft, #footersiteCenter, #footersiteRight {padding:' . $this->getData(['theme', 'footer', 'height']) . ' 0}'; - //$css .= '#footerbodyLeft, #footerbodyCenter, #footerbodyRight {padding:' . $this->getData(['theme', 'footer', 'height']) . ' 0}'; $css .= '#footerSocials{text-align:' . $this->getData(['theme', 'footer', 'socialsAlign']) . '}'; $css .= '#footerText{text-align:' . $this->getData(['theme', 'footer', 'textAlign']) . '}'; $css .= '#footerCopyright{text-align:' . $this->getData(['theme', 'footer', 'copyrightAlign']) . '}'; diff --git a/core/layout/common.css b/core/layout/common.css index c7149f5a..0dfb9bea 100755 --- a/core/layout/common.css +++ b/core/layout/common.css @@ -589,6 +589,20 @@ footer { padding: 0; } +footer #footerbody > div { + margin: 0 +} +footer #footersite > div { + padding:0 +} +footer #footerbody > div { + padding:0 +} +#footerFontText > p { + margin-top: 0; + margin-bottom: 0; +} + #footerLoginLink, #footerDisplayCopyright, #footerDisplayVersion, diff --git a/core/module/theme/view/footer/footer.js.php b/core/module/theme/view/footer/footer.js.php index 674b4e95..d10b545e 100755 --- a/core/module/theme/view/footer/footer.js.php +++ b/core/module/theme/view/footer/footer.js.php @@ -26,10 +26,7 @@ $("input, select").on("change", function() { css += "footer a{color:" + textColor + "}"; // Hauteur du pied de page //css += "#footersiteLeft, #footersiteCenter, #footersiteRight, #footerbodyLeft, #footerbodyCenter, #footerbodyRight {margin:" + $("#themeFooterHeight").val() + " 0}"; - css += "footer #footersite > div{padding:0}"; - css += "footer #footersite > div{margin:" + $("#themeFooterHeight").val() + " 0}"; - css += "footer #footerbody > div{margin:" + $("#themeFooterHeight").val() + " 0}"; - css += "footer #footerbody > div{padding:0}"; + css += "footer #footersite > div{margin:" + $("#themeFooterHeight").val() + " 0}"; // Alignement du contenu css += "#footerSocials{text-align:" + $("#themeFooterSocialsAlign").val() + "}"; css += "#footerText{text-align:" + $("#themeFooterTextAlign").val() + "}"; @@ -38,7 +35,7 @@ $("input, select").on("change", function() { css += "footer span{color:" + $("#themeFooterTextColor").val() + ";font-family:'" + footerFont.replace(/\+/g, " ") + "',sans-serif;font-weight:" + $("#themeFooterFontWeight").val() + ";font-size:" + $("#themeFooterFontSize").val() + ";text-transform:" + $("#themeFooterTextTransform").val() + "}"; // Marge if($("#themeFooterMargin").is(":checked")) { - css += 'footer{margin:0 10px 10px;padding: 0px 10px;}'; + css += 'footer{margin: 10px;padding: 10px;}'; } else { css += 'footer{margin:0;padding:0}'; diff --git a/core/module/theme/view/footer/footer.php b/core/module/theme/view/footer/footer.php index 36935ba3..c27601ae 100755 --- a/core/module/theme/view/footer/footer.php +++ b/core/module/theme/view/footer/footer.php @@ -190,7 +190,7 @@
- $this->getData(['theme', 'footer', 'margin']) ]); ?>