forked from ZwiiCMS-Team/ZwiiCMS
Merge branch 'master' into dev10
This commit is contained in:
commit
1a5428c671
10
CHANGES.md
10
CHANGES.md
@ -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).
|
||||
|
@ -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.
|
||||
*
|
||||
|
@ -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;
|
||||
|
@ -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
Loading…
Reference in New Issue
Block a user