|
|
|
@ -28,7 +28,7 @@ class common {
|
|
|
|
|
const GROUP_ADMIN = 3;
|
|
|
|
|
|
|
|
|
|
// Numéro de version
|
|
|
|
|
const ZWII_VERSION = '9.1.07';
|
|
|
|
|
const ZWII_VERSION = '9.1.08';
|
|
|
|
|
|
|
|
|
|
public static $actions = [];
|
|
|
|
|
public static $coreModuleIds = [
|
|
|
|
@ -970,6 +970,7 @@ class core extends common {
|
|
|
|
|
$css .= 'body,.row > div{font-size:' . $this->getData(['theme', 'text', 'fontSize']) . '}';
|
|
|
|
|
$css .= 'body,.block h4,input[type=\'email\'],input[type=\'text\'],input[type=\'password\'],.inputFile,select,textarea,.inputFile,.button.buttonGrey,.button.buttonGrey:hover{color:' . $this->getData(['theme', 'text', 'textColor']) . '}';
|
|
|
|
|
$css .= '.container{max-width:' . $this->getData(['theme', 'site', 'width']) . '}';
|
|
|
|
|
$css .= $this->getData(['theme', 'site', 'width']) === '100%' ? '#site{margin:0 auto;} body{margin:0 auto;}': '';
|
|
|
|
|
$css .= $this->getData(['theme', 'site', 'width']) === '750px' ? '.button, button{font-size:0.8em;}' : '';
|
|
|
|
|
$css .= '#site{background-color:' . $this->getData(['theme', 'site', 'backgroundColor']) . ';border-radius:' . $this->getData(['theme', 'site', 'radius']) . ';box-shadow:' . $this->getData(['theme', 'site', 'shadow']) . ' #212223}';
|
|
|
|
|
$colors = helper::colorVariants($this->getData(['theme', 'button', 'backgroundColor']));
|
|
|
|
|