From e5e737eca4b7534ba718bdd7c16a25dd66810596 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Fri, 24 Jul 2015 10:03:11 +0930 Subject: [PATCH] Update LESS variable names --- src/Support/ClientAction.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Support/ClientAction.php b/src/Support/ClientAction.php index be3d09c90..c70148d66 100644 --- a/src/Support/ClientAction.php +++ b/src/Support/ClientAction.php @@ -182,10 +182,10 @@ abstract class ClientAction extends HtmlAction protected function getLessVariables() { return [ - 'fl-primary-color' => $this->settings->get('theme_primary_color', '#000'), - 'fl-secondary-color' => $this->settings->get('theme_secondary_color', '#000'), - 'fl-dark-mode' => $this->settings->get('theme_dark_mode') ? 'true' : 'false', - 'fl-colored-header' => $this->settings->get('theme_colored_header') ? 'true' : 'false' + 'config-primary-color' => $this->settings->get('theme_primary_color', '#000'), + 'config-secondary-color' => $this->settings->get('theme_secondary_color', '#000'), + 'config-dark-mode' => $this->settings->get('theme_dark_mode') ? 'true' : 'false', + 'config-colored-header' => $this->settings->get('theme_colored_header') ? 'true' : 'false' ]; }