Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorJulius Haertl <jus@bitgrid.net>2017-02-17 18:42:07 +0300
committerJoas Schilling <coding@schilljs.com>2017-04-25 12:39:45 +0300
commit68a63ad3f33c683d726219a508bb31de7b9ab1d0 (patch)
tree910932971b761689c8ca843860119a1df6e29573 /themes
parent133f3fdc9aec28383dba323d58569eddd160b0df (diff)
Implement scss variable injection by OC_Defaults
Signed-off-by: Julius Haertl <jus@bitgrid.net> Add Scss variables to example theme and theming app Signed-off-by: Julius Haertl <jus@bitgrid.net> Use SCSSCacher to build theming css Signed-off-by: Julius Härtl <jus@bitgrid.net> Update theming.scss Signed-off-by: Julius Härtl <jus@bitgrid.net> Code cleanup Signed-off-by: Julius Härtl <jus@bitgrid.net> Fix tests Signed-off-by: Julius Härtl <jus@bitgrid.net> Inject SCSSCacher for easier testing Signed-off-by: Julius Härtl <jus@bitgrid.net> Fix typehint Signed-off-by: Lukas Reschke <lukas@statuscode.ch> Generate absolute URLs Signed-off-by: Lukas Reschke <lukas@statuscode.ch> Fix tests to always use absolute urls for theming images Signed-off-by: Julius Härtl <jus@bitgrid.net> MailheaderColor -> ColorPrimary Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'themes')
-rw-r--r--themes/example/defaults.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/themes/example/defaults.php b/themes/example/defaults.php
index 3d0ae9c1c74..6e0364a3dca 100644
--- a/themes/example/defaults.php
+++ b/themes/example/defaults.php
@@ -151,4 +151,14 @@ class OC_Theme {
return '#745bca';
}
+ /**
+ * Returns variables to overload defaults from core/css/variables.scss
+ * @return array
+ */
+ public function getScssVariables() {
+ return [
+ 'color-primary' => '#745bca'
+ ];
+ }
+
}