[9.1.04] hauteur de police en 750px

This commit is contained in:
fredtempez 2019-05-13 21:40:20 +02:00
parent 5b49c6633d
commit 1a9cfbaac9
2 changed files with 6 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class common {
const GROUP_ADMIN = 3;
// Numéro de version
const ZWII_VERSION = '9.1.03';
const ZWII_VERSION = '9.1.04';
public static $actions = [];
public static $coreModuleIds = [

View File

@ -27,6 +27,11 @@ $("input, select").on("change", function() {
css += ".button:hover,button[type='submit']:hover,.pagination a:hover,input[type='checkbox']:not(:active):checked:hover + label:before,input[type='checkbox']:active + label:before{background-color:" + colors.darken + "}";
css += ".helpButton span:hover{color:" + colors.darken + "}";
css += ".button:active,button[type='submit']:active,.pagination a:active{background-color:" + colors.veryDarken + "}";
if ($("#themeSiteWidth").val() === "750px") {
css += ".button, button{font-size:0.8em;}";
} else {
css += ".button, button{font-size:1em;}";
}
// Couleurs des liens
colors = core.colorVariants($("#themeLinkTextColor").val());
css += "a{color:" + colors.normal + "}";