From 81c99763ca9c89299e7619db47ab451fed6d10f7 Mon Sep 17 00:00:00 2001 From: fredtempez Date: Mon, 27 May 2019 10:31:45 +0200 Subject: [PATCH] =?UTF-8?q?[9.1.08]=20100%=20fluide=20bar=20=C3=A9galement?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core.php | 2 +- core/module/theme/view/site/site.js.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core.php b/core/core.php index f5ba0c30..129675ba 100644 --- a/core/core.php +++ b/core/core.php @@ -970,7 +970,7 @@ class core extends common { $css .= 'body,.row > div{font-size:' . $this->getData(['theme', 'text', 'fontSize']) . '}'; $css .= 'body,.block h4,input[type=\'email\'],input[type=\'text\'],input[type=\'password\'],.inputFile,select,textarea,.inputFile,.button.buttonGrey,.button.buttonGrey:hover{color:' . $this->getData(['theme', 'text', 'textColor']) . '}'; $css .= '.container{max-width:' . $this->getData(['theme', 'site', 'width']) . '}'; - $css .= $this->getData(['theme', 'site', 'width']) === '100%' ? '#site{margin:0 auto;} body{margin:0 auto;}': ''; + $css .= $this->getData(['theme', 'site', 'width']) === '100%' ? '#site{margin:0 auto;} body{margin:0 auto;} #bar{margin:0 auto;}': ''; $css .= $this->getData(['theme', 'site', 'width']) === '750px' ? '.button, button{font-size:0.8em;}' : ''; $css .= '#site{background-color:' . $this->getData(['theme', 'site', 'backgroundColor']) . ';border-radius:' . $this->getData(['theme', 'site', 'radius']) . ';box-shadow:' . $this->getData(['theme', 'site', 'shadow']) . ' #212223}'; $colors = helper::colorVariants($this->getData(['theme', 'button', 'backgroundColor'])); diff --git a/core/module/theme/view/site/site.js.php b/core/module/theme/view/site/site.js.php index 82d50b07..97a02bca 100755 --- a/core/module/theme/view/site/site.js.php +++ b/core/module/theme/view/site/site.js.php @@ -47,7 +47,7 @@ $("input, select").on("change", function() { // Largeur du site css += ".container{max-width:" + $("#themeSiteWidth").val() + "}"; if ($("#themeSiteWidth").val() === "100%") { - css += "#site{margin:0 auto;} body{margin:0 auto;}"; + css += "#site{margin:0 auto;} body{margin:0 auto;} #bar{margin:0 auto;}"; } // Couleur du site, arrondi sur les coins du site et ombre sur les bords du site css += "#site{background-color:" + $("#themeSiteBackgroundColor").val() + ";border-radius:" + $("#themeSiteRadius").val() + ";box-shadow:" + $("#themeSiteShadow").val() + " #212223}";