[9.0.01] Retour du backgroundcolor picker avec une image
This commit is contained in:
parent
96775d5465
commit
fa828215ca
@ -299,13 +299,8 @@ class theme extends common {
|
|||||||
// Soumission du formulaire
|
// Soumission du formulaire
|
||||||
if($this->isPost()) {
|
if($this->isPost()) {
|
||||||
// Si une image est positionnée, l'arrière en transparent.
|
// Si une image est positionnée, l'arrière en transparent.
|
||||||
if ($this->getInput('themeHeaderImage') === "") {
|
|
||||||
$themeHeaderBackgroundColor = $this->getInput('themeHeaderBackgroundColor'); }
|
|
||||||
else {
|
|
||||||
$themeHeaderBackgroundColor = 'rgba(0, 0, 0, 0)';
|
|
||||||
}
|
|
||||||
$this->setData(['theme', 'header', [
|
$this->setData(['theme', 'header', [
|
||||||
'backgroundColor' => $themeHeaderBackgroundColor,
|
'backgroundColor' => $this->getInput('themeHeaderBackgroundColor'),
|
||||||
'font' => $this->getInput('themeHeaderFont'),
|
'font' => $this->getInput('themeHeaderFont'),
|
||||||
'fontSize' => $this->getInput('themeHeaderFontSize'),
|
'fontSize' => $this->getInput('themeHeaderFontSize'),
|
||||||
'fontWeight' => $this->getInput('themeHeaderFontWeight'),
|
'fontWeight' => $this->getInput('themeHeaderFontWeight'),
|
||||||
|
@ -92,14 +92,6 @@ $("input, select").on("change", function() {
|
|||||||
.appendTo("head");
|
.appendTo("head");
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#themeHeaderImage").on("change", function() {
|
|
||||||
if($("#themeHeaderImage").val()) {
|
|
||||||
$("#themeHeaderBackgroundColorWrapper").slideUp();
|
|
||||||
$("#themeHeaderBackgroundColor").val($("#themeHeaderBackgroundColor").val());
|
|
||||||
} else {
|
|
||||||
$("#themeHeaderBackgroundColorWrapper").slideDown();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Affiche / Cache les options de l'image du fond
|
// Affiche / Cache les options de l'image du fond
|
||||||
$("#themeHeaderImage").on("change", function() {
|
$("#themeHeaderImage").on("change", function() {
|
||||||
|
@ -1,7 +1,4 @@
|
|||||||
<?php echo template::formOpen('themeHeaderForm'); ?>
|
<?php echo template::formOpen('themeHeaderForm'); ?>
|
||||||
<?php echo template::hidden('themeSiteBackgrounColor', [
|
|
||||||
'value' => $this->getData(['theme', 'site', 'backgroundColor'])
|
|
||||||
]); ?>
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col2">
|
<div class="col2">
|
||||||
<?php echo template::button('themeHeaderBack', [
|
<?php echo template::button('themeHeaderBack', [
|
||||||
|
Loading…
Reference in New Issue
Block a user