diff --git a/CHANGES.md b/CHANGES.md index b099fc56..139c7bba 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -10,6 +10,7 @@ Modifications : - Procédure de connexion : les erreurs de captcha sont comptabilisées comme des échecs, allégement des messages d'information. Correction : - Notification de commentaire, nom de la page incorrect. + - Thème : désactivation du changement de couleur du texte au survol d'un bouton standard. ## Version 10.3.12 Correction : diff --git a/core/core.php b/core/core.php index 1d7c0f43..e165ae0a 100755 --- a/core/core.php +++ b/core/core.php @@ -1582,7 +1582,7 @@ class core extends common { // Site $colors = helper::colorVariants($this->getData(['theme', 'text', 'linkColor'])); $css .= 'a{color:' . $colors['normal'] . '}'; - $css .= 'a:hover:not(.inputFile, button){color:' . $colors['darken'] . '}'; + //$css .= 'a:hover:not(.inputFile, button){color:' . $colors['darken'] . '}'; $css .= 'body,.row > div{font-size:' . $this->getData(['theme', 'text', 'fontSize']) . '}'; $css .= 'body{color:' . $this->getData(['theme', 'text', 'textColor']) . '}'; $css .= 'select,input[type=\'password\'],input[type=\'email\'],input[type=\'text\'],.inputFile,select,textarea{color:' . $this->getData(['theme', 'text', 'textColor']) .';background-color:'.$this->getData(['theme', 'site', 'backgroundColor']).';}';