forked from ZwiiCMS-Team/ZwiiCMS
[9.2.10] Changes + gestion des marges dans le footer
This commit is contained in:
parent
36ccffe074
commit
4523fa5837
@ -7,6 +7,7 @@
|
|||||||
- Modifications :
|
- 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 : 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, bannière : informations sur l'image sélectionnée (largeur et hauteur).
|
||||||
|
- Thème, pied de page : réactivation de l'aperçu.
|
||||||
- Corrections :
|
- 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.
|
- 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 :
|
- Mise à jour :
|
||||||
@ -15,7 +16,7 @@
|
|||||||
## version 9.2.09
|
## version 9.2.09
|
||||||
- Corrections :
|
- Corrections :
|
||||||
- Module Formulaire, erreur lors de l'envoi d'un premier formulaire
|
- 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
|
## Version 9.2.08
|
||||||
- Correction :
|
- Correction :
|
||||||
|
@ -1153,7 +1153,7 @@ class core extends common {
|
|||||||
// Pied de page
|
// Pied de page
|
||||||
$colors = helper::colorVariants($this->getData(['theme', 'footer', 'backgroundColor']));
|
$colors = helper::colorVariants($this->getData(['theme', 'footer', 'backgroundColor']));
|
||||||
if($this->getData(['theme', 'footer', 'margin'])) {
|
if($this->getData(['theme', 'footer', 'margin'])) {
|
||||||
$css .= 'footer{margin:0 10px 10px;padding: 0px 10px;}';
|
$css .= 'footer{margin: 10px;padding: 10px;}';
|
||||||
} else {
|
} else {
|
||||||
$css .= 'footer{margin:0;padding:0}';
|
$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{background-color:' . $colors['normal'] . ';color:' . $this->getData(['theme', 'footer', 'textColor']) . '}';
|
||||||
$css .= 'footer a{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 #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 .= '#footerSocials{text-align:' . $this->getData(['theme', 'footer', 'socialsAlign']) . '}';
|
||||||
$css .= '#footerText{text-align:' . $this->getData(['theme', 'footer', 'textAlign']) . '}';
|
$css .= '#footerText{text-align:' . $this->getData(['theme', 'footer', 'textAlign']) . '}';
|
||||||
$css .= '#footerCopyright{text-align:' . $this->getData(['theme', 'footer', 'copyrightAlign']) . '}';
|
$css .= '#footerCopyright{text-align:' . $this->getData(['theme', 'footer', 'copyrightAlign']) . '}';
|
||||||
|
@ -589,6 +589,20 @@ footer {
|
|||||||
padding: 0;
|
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,
|
#footerLoginLink,
|
||||||
#footerDisplayCopyright,
|
#footerDisplayCopyright,
|
||||||
#footerDisplayVersion,
|
#footerDisplayVersion,
|
||||||
|
@ -26,10 +26,7 @@ $("input, select").on("change", function() {
|
|||||||
css += "footer a{color:" + textColor + "}";
|
css += "footer a{color:" + textColor + "}";
|
||||||
// Hauteur du pied de page
|
// Hauteur du pied de page
|
||||||
//css += "#footersiteLeft, #footersiteCenter, #footersiteRight, #footerbodyLeft, #footerbodyCenter, #footerbodyRight {margin:" + $("#themeFooterHeight").val() + " 0}";
|
//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 #footersite > div{margin:" + $("#themeFooterHeight").val() + " 0}";
|
||||||
css += "footer #footerbody > div{margin:" + $("#themeFooterHeight").val() + " 0}";
|
|
||||||
css += "footer #footerbody > div{padding:0}";
|
|
||||||
// Alignement du contenu
|
// Alignement du contenu
|
||||||
css += "#footerSocials{text-align:" + $("#themeFooterSocialsAlign").val() + "}";
|
css += "#footerSocials{text-align:" + $("#themeFooterSocialsAlign").val() + "}";
|
||||||
css += "#footerText{text-align:" + $("#themeFooterTextAlign").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() + "}";
|
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
|
// Marge
|
||||||
if($("#themeFooterMargin").is(":checked")) {
|
if($("#themeFooterMargin").is(":checked")) {
|
||||||
css += 'footer{margin:0 10px 10px;padding: 0px 10px;}';
|
css += 'footer{margin: 10px;padding: 10px;}';
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
css += 'footer{margin:0;padding:0}';
|
css += 'footer{margin:0;padding:0}';
|
||||||
|
@ -190,7 +190,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col6">
|
<div class="col6">
|
||||||
<div id="themeFooterPositionOptions">
|
<div id="themeFooterPositionOptions">
|
||||||
<?php echo template::checkbox('themeFooterMargin', true, 'Appliquer une marge à gauche et à droite', [
|
<?php echo template::checkbox('themeFooterMargin', true, 'Alignement sur les marges', [
|
||||||
'checked' => $this->getData(['theme', 'footer', 'margin'])
|
'checked' => $this->getData(['theme', 'footer', 'margin'])
|
||||||
]); ?>
|
]); ?>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user