From f02379453ca414578b3d21c72f5000e445830157 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Tempez?= Date: Mon, 26 Sep 2022 16:21:56 +0200 Subject: [PATCH] =?UTF-8?q?Bug=20couleur=20du=20texte=20dans=20les=20en-t?= =?UTF-8?q?=C3=AAtes=20de=20tableau?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/core.php b/core/core.php index 2696767f..ae6ddd19 100644 --- a/core/core.php +++ b/core/core.php @@ -2606,6 +2606,7 @@ class core extends common { // TinyMCE $css .= 'body:not(.editorWysiwyg),span .zwiico-help {color:' . $this->getData(['admin','colorText']) . ';}'; $css .= 'table thead tr, table thead tr .zwiico-help{ background-color:'.$this->getData(['admin','colorText']).'; color:'.$colors['text'].';}'; + $css .= 'table thead th { color: ' . $this->getData(['admin','colorText']) . '; filter: invert(100%);}'; $colors = helper::colorVariants($this->getData(['admin','backgroundColorButton'])); $css .= 'input[type="checkbox"]:checked + label::before,.speechBubble{background-color:' . $colors['normal'] . ';color:' . $colors['text'] . ';}'; $css .= '.speechBubble::before {border-color:' . $colors['normal'] . ' transparent transparent transparent;}';