[10.0.86.dev] merge master

This commit is contained in:
Fred Tempez 2019-11-12 13:28:33 +01:00
commit 4f97509e0d
6 changed files with 30 additions and 20 deletions

View File

@ -43,6 +43,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 :
@ -51,7 +52,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 :

View File

@ -31,7 +31,7 @@ class common {
const TEMP_DIR = 'site/tmp/';
// Numéro de version
const ZWII_VERSION = '10.0.85.dev';
const ZWII_VERSION = '10.0.86.dev';
public static $actions = [];
public static $coreModuleIds = [
@ -1321,7 +1321,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}';
}
@ -1329,10 +1329,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 .= '#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']) . '}';

View File

@ -666,6 +666,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,

View File

@ -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}';
@ -261,6 +258,7 @@ $("#themeFooterDisplaySearch").on("change", function() {
}
}).trigger("change");
/*
// Affiche / Cache les options de la position
$("#themeFooterPosition").on("change", function() {
if($(this).val() === 'site') {
@ -272,3 +270,4 @@ $("#themeFooterPosition").on("change", function() {
});
}
}).trigger("change");
*/

View File

@ -189,12 +189,12 @@
]); ?>
</div>
<div class="col6">
<div id="themeFooterPositionOptions" class="displayNone">
<?php echo template::checkbox('themeFooterMargin', true, 'Aligner le bas de page avec le contenu', [
<div id="themeFooterPositionOptions">
<?php echo template::checkbox('themeFooterMargin', true, 'Alignement sur les marges', [
'checked' => $this->getData(['theme', 'footer', 'margin'])
]); ?>
</div>
</div>
</div>
</div>
</div>
</div>

View File

@ -5,11 +5,11 @@ tinymce.init({
// Classe où appliquer l'éditeur
selector: ".editorWysiwyg",
// Aperçu dans le pied de page
// setup:function(ed) {
// ed.on('change', function(e) {
// $("#footerText").html(ed.getContent());
// });
//},
setup:function(ed) {
ed.on('change', function(e) {
$("#footerText").html(tinyMCE.get('themeFooterText').getContent());
});
},
// Langue
language: "fr_FR",
// Plugins