mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-16 06:05:00 -05:00
Added sass-globbing, allowing plugin stylesheets to be auto-imported from the assets/stylesheets/plugins directory
This commit is contained in:
parent
66b75fe40c
commit
a4adca5fcd
6
.themes/classic/assets/stylesheets/plugins/_plugins.scss
Normal file
6
.themes/classic/assets/stylesheets/plugins/_plugins.scss
Normal file
@ -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.
|
||||
*/
|
||||
|
@ -7,4 +7,5 @@
|
||||
@import "custom/layout";
|
||||
@import "base";
|
||||
@import "partials";
|
||||
@import "plugins/**/*";
|
||||
@import "custom/styles";
|
||||
|
1
Gemfile
1
Gemfile
@ -9,6 +9,7 @@ group :development do
|
||||
gem 'RedCloth', '~> 4.2.9'
|
||||
gem 'haml', '~> 3.1.7'
|
||||
gem 'compass', '~> 0.12.2'
|
||||
gem 'sass-globbing', '~> 1.0.0'
|
||||
gem 'rubypants', '~> 0.2.0'
|
||||
gem 'stringex', '~> 1.4.0'
|
||||
gem 'liquid', '~> 2.3.0'
|
||||
|
@ -71,6 +71,8 @@ GEM
|
||||
redcarpet (2.2.2)
|
||||
rubypants (0.2.0)
|
||||
sass (3.2.4)
|
||||
sass-globbing (1.0.0)
|
||||
sass (>= 3.1)
|
||||
sinatra (1.3.3)
|
||||
rack (~> 1.3, >= 1.3.6)
|
||||
rack-protection (~> 1.2)
|
||||
@ -110,6 +112,7 @@ DEPENDENCIES
|
||||
rb-inotify
|
||||
redcarpet (~> 2.2.2)
|
||||
rubypants (~> 0.2.0)
|
||||
sass-globbing (~> 1.0.0)
|
||||
sinatra (~> 1.3.3)
|
||||
stitch-rb
|
||||
stringex (~> 1.4.0)
|
||||
|
Loading…
Reference in New Issue
Block a user