Merge branch '10400' into 11000

This commit is contained in:
fredtempez 2020-12-31 17:56:40 +01:00
commit 5d5b87d9e6
2 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,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 :

View File

@ -1670,7 +1670,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']).';}';