Bugfix: Keep import path and context for plugin scss imports

- instead of concating all files into one gigantic file reuse the importer
 - and that way keep the context for relative paths in plugin scss
This commit is contained in:
Benjamin Kampmann 2014-04-10 16:24:09 +02:00
parent 8e58687df5
commit 269600323a
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class DiscourseSassImporter < Sass::Importers::Filesystem
stylesheets = DiscoursePluginRegistry.mobile_stylesheets
end
contents = ""
stylesheets.each {|css| contents << File.read(css) }
stylesheets.each {|css| contents << "@import '#{css}';" }
Sass::Engine.new(contents, options.merge(
filename: "#{name}.scss",
importer: self,