[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
|
||||
|
||||
## 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.
|
||||
|
@ -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 = [
|
||||
|
@ -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 {
|
||||
|
@ -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';
|
||||
|
Loading…
Reference in New Issue
Block a user