Merge branch 'master' into dev10
This commit is contained in:
commit
e5a128bdb5
@ -22,8 +22,9 @@
|
||||
- Chargement paresseux des images.
|
||||
|
||||
## version 9.2.24
|
||||
- Correction :
|
||||
- Corrections :
|
||||
- Mauvaise configuration de SimpleLightBox
|
||||
- Thème : marges du menu en position en-dehors du site
|
||||
|
||||
## version 9.2.23
|
||||
- Nouveautés :
|
||||
|
@ -1262,7 +1262,12 @@ class core extends common {
|
||||
} else {
|
||||
$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']) . '}';
|
||||
// Pied de page
|
||||
$colors = helper::colorVariants($this->getData(['theme', 'footer', 'backgroundColor']));
|
||||
|
@ -59,7 +59,7 @@ $("input, select").on("change", function() {
|
||||
if($("#themeMenuMargin").is(":checked")) {
|
||||
if(
|
||||
<?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}';
|
||||
}
|
||||
@ -70,6 +70,12 @@ $("input, select").on("change", function() {
|
||||
else {
|
||||
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
|
||||
$("#themePreview").remove();
|
||||
$("<style>")
|
||||
|
Loading…
Reference in New Issue
Block a user