From e8326e848efd7182def107f037b1947b25ab41c3 Mon Sep 17 00:00:00 2001 From: Fred Tempez Date: Wed, 4 Nov 2020 14:14:23 +0100 Subject: [PATCH 1/4] changes --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 6b6cd266..0ae01e8b 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -15,7 +15,7 @@ - Paramètres de localisation. - Maintenance terminée, redirection vers l'accueil. - Marge haute dans les vues en mode light. -- Modification : +- Modifications : - Changement de noms de classe : - navLevel1 devient navMain - navLevel2 devient navSub From 32b7ca8c0033a4c23f93a35310ad8d3898867b62 Mon Sep 17 00:00:00 2001 From: Fred Tempez Date: Wed, 4 Nov 2020 14:15:11 +0100 Subject: [PATCH 2/4] changes --- CHANGES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 0ae01e8b..135fedbd 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -9,7 +9,7 @@ - Thème du menu : alignement inopérant ; arrière-plan semi-transparent non uniforme. - Supprime les warning lors d'une primo installation. - Inversion des icônes + et - dans la configuration -- Amélioration : +- Améliorations : - Thème menu : couleurs du sous-menu. - Mise en page du corps des mails de notification. - Paramètres de localisation. From 2ad472e5482f23debf317d24677c73323d855dd4 Mon Sep 17 00:00:00 2001 From: Fred Tempez Date: Wed, 4 Nov 2020 14:20:26 +0100 Subject: [PATCH 3/4] changes + version --- CHANGES.md | 1 + README.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 135fedbd..0198da2e 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,7 @@ ## version 10.3.04 - Corrections : + - Warning lors d'une primo installation. - Position des entrées de menu sur les écrans de smartphone. - Thème : import d'un thème, d'administration impossible. - Thème : import d'un thème, nettoyage du dossier tmp. diff --git a/README.md b/README.md index 7f76faf3..f0fa0a46 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![](https://img.shields.io/github/last-commit/fredtempez/ZwiiCMS/master) ![](https://img.shields.io/github/release-date/fredtempez/ZwiiCMS) -# ZwiiCMS 10.3.03 +# ZwiiCMS 10.3.04 Zwii est un CMS sans base de données (flat-file) qui permet de créer et gérer facilement un site web sans aucune connaissance en programmation. From ff951024ea68d9993faad1c8902fcab6685b3b95 Mon Sep 17 00:00:00 2001 From: Fred Tempez Date: Wed, 4 Nov 2020 14:35:58 +0100 Subject: [PATCH 4/4] mage light haute 150 px pour installation --- core/core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core.php b/core/core.php index 21d318de..d593b239 100644 --- a/core/core.php +++ b/core/core.php @@ -1551,7 +1551,7 @@ class core extends common { //$css .= '.button.buttonGrey,.button.buttonGrey:hover{color:' . $this->getData(['theme', 'text', 'textColor']) . '}'; $css .= '.container{max-width:' . $this->getData(['theme', 'site', 'width']) . '}'; $margin = $this->getData(['theme', 'site', 'margin']) ? '0' : '20px'; - $css .= $this->getData(['theme', 'site', 'width']) === '100%' ? '#site.light{margin:15px auto !important;}#site{margin:0 auto !important;} body{margin:0 auto !important;} #bar{margin:0 auto !important;} body > header{margin:0 auto !important;} body > nav {margin: 0 auto !important;} body > footer {margin:0 auto !important;}': "#site.light{margin: 150px auto !important;}#site{margin: " . $margin . " auto !important;} body{margin:0px 10px;} #bar{margin: 0 -10px;} body > header{margin: 0 -10px;} body > nav {margin: 0 -10px;} body > footer {margin: 0 -10px;} "; + $css .= $this->getData(['theme', 'site', 'width']) === '100%' ? '#site.light{margin:150px auto !important;}#site{margin:0 auto !important;} body{margin:0 auto !important;} #bar{margin:0 auto !important;} body > header{margin:0 auto !important;} body > nav {margin: 0 auto !important;} body > footer {margin:0 auto !important;}': "#site.light{margin: 100px auto !important;}#site{margin: " . $margin . " auto !important;} body{margin:0px 10px;} #bar{margin: 0 -10px;} body > header{margin: 0 -10px;} body > nav {margin: 0 -10px;} body > footer {margin: 0 -10px;} "; $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;}'; $css .= '.editorWysiwyg {background-color:' . $this->getData(['theme', 'site', 'backgroundColor']) . ';}';