From cf3a61160b6d1c4244e04adb586d9b68dc2ff4c0 Mon Sep 17 00:00:00 2001 From: "stephen@cubedesigners.com" Date: Thu, 27 Apr 2017 17:49:00 +0000 Subject: [PATCH] Fix zoom popup close button styling. WIP #815 @0:30 --- inc/ws/Util/html5/class.ws.html5.compiler.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inc/ws/Util/html5/class.ws.html5.compiler.php b/inc/ws/Util/html5/class.ws.html5.compiler.php index 31592787f..124f9860e 100644 --- a/inc/ws/Util/html5/class.ws.html5.compiler.php +++ b/inc/ws/Util/html5/class.ws.html5.compiler.php @@ -1342,6 +1342,9 @@ class wsHTML5Compiler { # Tooltip $res[] = '#tooltip{background-color:' . self::colorToCSS($this->theme->parametres->tooltipBackColor) . ';color:' . self::colorToCSS($this->theme->parametres->tooltipTextColor) . ';}'; + # ZoomPopup close button background + $res[] = '.zoomPopupClose {background-color:'. self::colorToCSS($this->theme->parametres->couleurB) .';}'; + $res = array_chunk($res, 3500); foreach ($res as $k => $css) { file_put_contents(sprintf($file, $k), implode("\n", $css)); -- 2.39.5