[9.2.20] mise en page des gabarits dans le footer + erreur dans main.php

This commit is contained in:
Fred Tempez 2020-02-11 11:05:03 +01:00
parent 37588f7739
commit 851c8689f5
4 changed files with 15 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# 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
- Corrections :
- CSS : marge bouton InputDelete.

View File

@ -33,7 +33,7 @@ class common {
const TEMP_DIR = 'site/tmp/';
// Numéro de version
const ZWII_VERSION = '9.2.19';
const ZWII_VERSION = '9.2.20';
public static $actions = [];
public static $coreModuleIds = [

View File

@ -640,6 +640,12 @@ footer #footerbody > div {
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 */
@media (max-width: 768px) {
body > footer {

View File

@ -210,7 +210,9 @@
$this->getData(['theme', 'footer', 'position']) === 'hide'
AND $this->getUrl(0) === 'theme'
)
) { $position = 'site'; } else {
) { $position = 'site';
$positionFixed = '';
} else {
$position = 'body';
if ( $this->getData(['theme', 'footer', 'fixed']) === true) {
$positionFixed = 'footerbodyFixed';