[9.2.24] erreur thème menu : marge gauche

This commit is contained in:
Fred Tempez 2020-03-12 09:35:18 +01:00
parent a429a0c1c3
commit 2562138de5
3 changed files with 15 additions and 3 deletions

View File

@ -1,8 +1,9 @@
# Changelog # Changelog
## version 9.2.24 ## version 9.2.24
- Correction : - Corrections :
- Mauvaise configuration de SimpleLightBox - Mauvaise configuration de SimpleLightBox
- Thème : marges du menu en position en-dehors du site
## version 9.2.23 ## version 9.2.23
- Nouveautés : - Nouveautés :

View File

@ -1244,7 +1244,12 @@ class core extends common {
} else { } else {
$css .= 'nav{margin:0}'; $css .= 'nav{margin:0}';
} }
if(
$this->getData(['theme', 'menu', 'position']) === 'top'
) {
$css .= 'nav{padding:0 10px;}';
}
$css .= '#toggle span,#menu a{padding:' . $this->getData(['theme', 'menu', 'height']) .';font-family:"' . str_replace('+', ' ', $this->getData(['theme', 'menu', 'font'])) . '",sans-serif;font-weight:' . $this->getData(['theme', 'menu', 'fontWeight']) . ';font-size:' . $this->getData(['theme', 'menu', 'fontSize']) . ';text-transform:' . $this->getData(['theme', 'menu', 'textTransform']) . '}'; $css .= '#toggle span,#menu a{padding:' . $this->getData(['theme', 'menu', 'height']) .';font-family:"' . str_replace('+', ' ', $this->getData(['theme', 'menu', 'font'])) . '",sans-serif;font-weight:' . $this->getData(['theme', 'menu', 'fontWeight']) . ';font-size:' . $this->getData(['theme', 'menu', 'fontSize']) . ';text-transform:' . $this->getData(['theme', 'menu', 'textTransform']) . '}';
// Pied de page // Pied de page
$colors = helper::colorVariants($this->getData(['theme', 'footer', 'backgroundColor'])); $colors = helper::colorVariants($this->getData(['theme', 'footer', 'backgroundColor']));

View File

@ -59,7 +59,7 @@ $("input, select").on("change", function() {
if($("#themeMenuMargin").is(":checked")) { if($("#themeMenuMargin").is(":checked")) {
if( if(
<?php echo json_encode($this->getData(['theme', 'menu', 'position']) === 'site-first'); ?> <?php echo json_encode($this->getData(['theme', 'menu', 'position']) === 'site-first'); ?>
|| <?php echo json_encode($this->getData(['theme', 'header', 'position']) === 'body'); ?> || <?php echo json_encode($this->getData(['theme', 'menu', 'position']) === 'site-second'); ?>
) { ) {
css += 'nav{padding: 10px 10px 0 10px}'; css += 'nav{padding: 10px 10px 0 10px}';
} }
@ -70,6 +70,12 @@ $("input, select").on("change", function() {
else { else {
css += 'nav{margin:0;}'; css += 'nav{margin:0;}';
} }
if(
<?php echo json_encode($this->getData(['theme', 'menu', 'position']) === 'top'); ?>
) {
css += 'nav{padding:0 10px;}';
}
// Ajout du css au DOM // Ajout du css au DOM
$("#themePreview").remove(); $("#themePreview").remove();
$("<style>") $("<style>")