diff --git a/core/core.php b/core/core.php index d05d13bc..e3f9e2af 100644 --- a/core/core.php +++ b/core/core.php @@ -34,7 +34,7 @@ class common { const TEMP_DIR = 'site/tmp/'; // Numéro de version - const ZWII_VERSION = '10.0.003.dev'; + const ZWII_VERSION = '10.0.004.dev'; public static $actions = []; public static $coreModuleIds = [ @@ -1111,6 +1111,12 @@ class common { $this->setData(['theme','menu','burgerTitle',true]); $this->setData(['core', 'dataVersion', 10000]); } + // Version 9.2.15 + if($this->getData(['core', 'dataVersion']) < 9215) { + // Données de la barre de langue dans le menu + $this->setData(['theme','menu','burgerTitle',true]); + $this->setData(['core', 'dataVersion', 9215]); + } } } diff --git a/core/layout/common.css b/core/layout/common.css index 75767d97..57974d87 100755 --- a/core/layout/common.css +++ b/core/layout/common.css @@ -434,10 +434,17 @@ nav #toggle { display: none; font-weight: bold; } + nav #toggle span { display: block; } +nav #burgerText { + float: left; + font-size: 1.4em; + margin: 15px 0 0 10px; +} + nav ul { padding: 0; margin: 0; diff --git a/core/layout/main.php b/core/layout/main.php index f1239d70..79f0e187 100755 --- a/core/layout/main.php +++ b/core/layout/main.php @@ -37,7 +37,11 @@ } ?> > -
+
+ getData(['theme','menu','burgerTitle']) === true ): ?> +
getData(['config','title']);?>
+ +