From 6d05cc6f4855612e10064fafdb30085b67a26ec5 Mon Sep 17 00:00:00 2001 From: Fred Tempez Date: Wed, 15 Jul 2020 22:56:51 +0200 Subject: [PATCH] 102.04 theme admin font not body --- core/core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core.php b/core/core.php index 4546f81d..63c2a6f7 100755 --- a/core/core.php +++ b/core/core.php @@ -1578,7 +1578,7 @@ class core extends common { $css = '/*' . md5(json_encode($this->getData(['admin']))) . '*/'; $colors = helper::colorVariants($this->getData(['admin','backgroundColor'])); $css .= '#site{background-color:' . $colors['normal']. ';}'; - $css .= 'body, .row > div {font:' . $this->getData(['admin','fontSize']) . ' "' . $this->getData(['admin','fontText']) . '", sans-serif;}'; + $css .= '.row > div {font:' . $this->getData(['admin','fontSize']) . ' "' . $this->getData(['admin','fontText']) . '", sans-serif;}'; $css .= 'body h1, h2, h3, h4, 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']) . ';}'; $colors = helper::colorVariants($this->getData(['admin','backgroundColorButton']));