I have a rail 4 project with "stylesheets/application/index.css.scss" with my all css files:
/*
*= require jquery.ui.all
*= require_tree ../shared
*= require_tree ../design
*= require_tree ../layout
*= require_self
*= require_tree .
*/
rails compile all css in only one, minimized (in prod).
I need to import @import "shared/header"
in many files.
exemple: in "stylesheets/layout/main.css.scss"
@import 'shared/header';
.header
{
@extend .header_common_overview;
[...]
}
but I @import 'shared/header'
in others files too. The result is :
when rails compile in only one file, there are many times the same rules ".header_common_overview", because I import it in different files.
I tried to put the "import" instruction directly in index.css.scss, but it does't works.
So how can I import only one time a file, and be abble to call the content in all others files?
First, don't use
require_tree .
You lose control over the include order of your CSS files, potentially leading to cascading issues - styles being overwritten that really should not be.I've learned to avoid sprockets'
require
lines in the main SASS files for reasons similar to what you describe.=require_tree
all over the placeIn your
index.css.scss
you might consider simply puttingThese
@import
lines correspond to other sass files.shared.css.scss
for example might look likeThe idea is to
@import
instead of Sprockets=require
directive to keep variables, mixins, etc... present in an included file available throughout.