From 9364f37ac75a028c7ce12de06cc00da5bc2506b9 Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Mon, 11 Mar 2013 01:40:41 -0500 Subject: Added sass-globbing, allowing plugin stylesheets to be auto-imported from the assets/stylesheets/plugins directory --- .themes/classic/sass/plugins/_plugins.scss | 6 ++++++ .themes/classic/sass/screen.scss | 1 + 2 files changed, 7 insertions(+) create mode 100644 .themes/classic/sass/plugins/_plugins.scss (limited to '.themes/classic') diff --git a/.themes/classic/sass/plugins/_plugins.scss b/.themes/classic/sass/plugins/_plugins.scss new file mode 100644 index 00000000..3b4ba0b8 --- /dev/null +++ b/.themes/classic/sass/plugins/_plugins.scss @@ -0,0 +1,6 @@ +/* + Add plugin stylesheets to this directory and they will be automatically + Imported. Load order is alphabetical and styles can be overriden in + custom/_style.scss which is loaded after all plugin stylesheets. +*/ + diff --git a/.themes/classic/sass/screen.scss b/.themes/classic/sass/screen.scss index 1899f608..155e81e9 100644 --- a/.themes/classic/sass/screen.scss +++ b/.themes/classic/sass/screen.scss @@ -7,4 +7,5 @@ @import "custom/layout"; @import "base"; @import "partials"; +@import "plugins/**/*"; @import "custom/styles"; -- cgit v1.2.1