From a73fc581b8ce59a8e7fe356fa4dc891165bc246b Mon Sep 17 00:00:00 2001 From: SylvainLelievre Date: Fri, 19 Mar 2021 08:28:43 +0100 Subject: [PATCH] Ajout dans core.php d'une ligne de css table thead tr pour admin.css --- core/core.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/core.php b/core/core.php index 97b22910..f8e22e35 100755 --- a/core/core.php +++ b/core/core.php @@ -721,7 +721,7 @@ class common { // sitemap file name $sitemap->setSitemapFileName( 'sitemap.xml') ; - + // Set the sitemap index file name $sitemap->setSitemapIndexFileName( 'sitemap-index.xml'); @@ -1603,7 +1603,7 @@ class common { $this->setData(['core', 'dataVersion', 11000]); - + } } } @@ -1851,6 +1851,7 @@ class core extends common { $css .= '.row > div {font:' . $this->getData(['admin','fontSize']) . ' "' . $this->getData(['admin','fontText']) . '", sans-serif;}'; $css .= 'body h1, h2, h3, h4 a, h5, h6 {font-family:' . $this->getData(['admin','fontTitle' ]) . ', sans-serif;color:' . $this->getData(['admin','colorTitle' ]) . ';}'; $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['normal'].';}'; $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;}';