Merge branch 'master' into dev10

This commit is contained in:
Fred Tempez 2020-02-11 11:07:08 +01:00
commit 1a5428c671
5 changed files with 22 additions and 6 deletions

View File

@ -21,6 +21,16 @@
- Modification :
- Chargement paresseux des images.
## 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.
- Texte de la page des mentions légales du site d'exemple.
## version 9.2.18
- Corrections :
- Conformité balise p dans span (footer).

View File

@ -1,8 +1,7 @@
<?php
/**
* This file is part of Zwii.
*
* This file is part of Zwii. *
* For full copyright and license information, please see the LICENSE
* file that was distributed with this source code.
*

View File

@ -643,6 +643,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 {
@ -982,8 +988,7 @@ label {
background: #F5F5F5;
text-align: center;
float: right;
min-height :100%;
min-height: 100%;
}
.inputFile:hover {
text-decoration: none;

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';

File diff suppressed because one or more lines are too long