forked from ZwiiCMS-Team/ZwiiCMS
[9.2.20] mise en page des gabarits dans le footer + erreur dans main.php
This commit is contained in:
parent
37588f7739
commit
851c8689f5
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## version 9.2.20
|
||||||
|
- Corrections :
|
||||||
|
- Footer / Texte personnalisé : problème d'alignement des colonnes
|
||||||
|
- Variable non déclarée dans main.php provoquant un warning
|
||||||
|
|
||||||
## version 9.2.19
|
## version 9.2.19
|
||||||
- Corrections :
|
- Corrections :
|
||||||
- CSS : marge bouton InputDelete.
|
- CSS : marge bouton InputDelete.
|
||||||
|
@ -33,7 +33,7 @@ class common {
|
|||||||
const TEMP_DIR = 'site/tmp/';
|
const TEMP_DIR = 'site/tmp/';
|
||||||
|
|
||||||
// Numéro de version
|
// Numéro de version
|
||||||
const ZWII_VERSION = '9.2.19';
|
const ZWII_VERSION = '9.2.20';
|
||||||
|
|
||||||
public static $actions = [];
|
public static $actions = [];
|
||||||
public static $coreModuleIds = [
|
public static $coreModuleIds = [
|
||||||
|
@ -640,6 +640,12 @@ footer #footerbody > div {
|
|||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Corrige le problème des <br> dans les col du texte personnalisé */
|
||||||
|
#footerText div {
|
||||||
|
display: inline-flex;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
/* Conserve le pied de page sur une ligne */
|
/* Conserve le pied de page sur une ligne */
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
body > footer {
|
body > footer {
|
||||||
|
@ -210,7 +210,9 @@
|
|||||||
$this->getData(['theme', 'footer', 'position']) === 'hide'
|
$this->getData(['theme', 'footer', 'position']) === 'hide'
|
||||||
AND $this->getUrl(0) === 'theme'
|
AND $this->getUrl(0) === 'theme'
|
||||||
)
|
)
|
||||||
) { $position = 'site'; } else {
|
) { $position = 'site';
|
||||||
|
$positionFixed = '';
|
||||||
|
} else {
|
||||||
$position = 'body';
|
$position = 'body';
|
||||||
if ( $this->getData(['theme', 'footer', 'fixed']) === true) {
|
if ( $this->getData(['theme', 'footer', 'fixed']) === true) {
|
||||||
$positionFixed = 'footerbodyFixed';
|
$positionFixed = 'footerbodyFixed';
|
||||||
|
Loading…
Reference in New Issue
Block a user