So, I have an app/assets/stylesheets/ directory structure that looks something like this:

   |-dialogs
   |-mixins
   |---buttons
   |---gradients
   |---vendor_support
   |---widgets
   |-pages
   |-structure
   |-ui_elements

In each directory, there are multiple sass partials (usually *.css.scss, but one or two *.css.scss.erb).

I might be assuming a lot, but rails SHOULD automatically compile all the files in those directories because of *= require_tree . in application.css, right?

I recently have tried restructuring these files by removing all color variables and placing them in a file in the root app/assets/stylesheets folder (_colors.css.scss). I then created a file in the root app/assets/stylesheets folder called master.css.scss which looks like this:

// Color Palette 
@import "colors";

// Mixins
@import "mixins/buttons/standard_button";
@import "mixins/gradients/table_header_fade";
@import "mixins/vendor_support/rounded_corners";
@import "mixins/vendor_support/rounded_corners_top";
@import "mixins/vendor_support/box_shadow";
@import "mixins/vendor_support/opacity";

I don't really understand how rails handles the order of asset compilation, but it's obviously not in my favor. It appears none of the files realize they have any variables or mixins being imported, and so it throws errors and I can't compile.

Undefined variable: "$dialog_divider_color".
  (in /home/blah/app/assets/stylesheets/dialogs/dialog.css.scss.erb)

Undefined mixin 'rounded_corners'.
  (in /home/blah/app/assets/stylesheets/widgets.css.scss)

The variable $dialog_divider_color is clearly defined in _colors.css.scss, and _master.css.scss is importing colors and all my mixins. But apparently rails didn't get that memo.

Is there some way I can fix these errors, or will I need to resort to putting all my variable definitions back into each individual file, as well as all the mixin imports?

Unfortunately, this guy doesn't seem to think it's possible, but I'm hoping he's wrong. Any thoughts are greatly appreciated.

link|improve this question

68% accept rate
feedback

3 Answers

up vote 7 down vote accepted
+100

The problem with CSS is, you do not want to automatically add all files. The order of which your sheets are loaded and processed by the browser is essential. So you will always end up explicitly importing all your css.

For example, lets say you have a reset.css sheet to default all those nasty browser default css styles to something that is the same for all browsers. If you just randomly include this sheet somewhere in your css imports, it will then not only override the browser default styles, but also any styles defined in earlier imports.

This goes the same for your variables and mixins, if they are imported too late, they can not be found by sheets that were imported before them.

I generally use this approach:

  • Rename you application .css to .scss
  • Remove the require tree directives so you application.scss looks like:
/*
*= require_self
*/

Then start including your css. You can either have mulitple files for the includes, like give every directory one, or just all put then in you application.scss file. For example, if you are using twitters bootstrap and a few css sheets of your own, you have to import bootstrap first, because it has a sheet to reset styles. So you add @import "bootstrap/bootstrap.scss"; to your application.scss.

The bootstrap.scss file looks like:

// CSS Reset
@import "reset.scss";

// Core
@import "variables.scss";
@import "mixins.scss";

// Grid system and page structure
@import "scaffolding.scss";

// Styled patterns and elements
@import "type.scss";
@import "forms.scss";
@import "tables.scss";
@import "patterns.scss";

And your application.scss file will end up like:

/*
 *= require_self
*/
@import "bootstrap/bootstrap.scss";
@import "my_model.css.scss";
@import "my_other_model.css.scss";

Because of the order of the imports, you can now use the variables, loaded with @import "variables.scss"; in any other .scss file imported after it. So they can be used in type.scss in the bootstrap folder but also in my_model.css.scss.

link|improve this answer
Thanks, this is the approach I ended up going with. I hate this solution because you have to manually add every file you're including each time you create one, but it does seem that when CSS is involved, order does matter. Normally I'd say that's just bad CSS writing, but if you're using things that are vendor provided (i.e. bootstrap as you mention above), you tend to want to overwrite things, so I grudgingly agree this is the right approach. – David Savage Feb 13 at 19:03
feedback

According to this question, you can ONLY use application.css.sass in order to define import and share variables between your templates.

=> It seems to be only a matter of name.

An other way can be to include everything and disable this pipeline.

link|improve this answer
This is essentially the same thing Benjamin Udink ten Cate offered in the second part of your response, but awarding him the bounty as his solution is more explanatory. – David Savage Feb 13 at 19:01
feedback

Create the following folder structure:

+ assets
|
--+ base
| |
| --+ mixins (with subfolders as noted in your question)
|
--+ styles
  |
  --+ ...

In folder base create a file "globals.css.scss". In this file, declare all your imports:

@import 'base/colors';
@import 'base/mixins/...';
@import 'base/mixins/...';

In you application.css.scss, you should then have:

*= require_self
*= depends_on ./base/globals.css.scss
*= require_tree ./styles

And as the last step (this is important), declare @import 'base/globals' in every style file where you want to use variables or mixins. You might consider this overhead, but I actually like the idea that you have to declare the dependencies of your styles in every file. Of course, it is important that you only import mixins and variables in the globals.css.scss as they do not add style definitions. Otherwise the style definitions would be included multiple times in your precompiled file ...

link|improve this answer
I tried this out but could never get it to work properly (still was getting missing variable errors). Maybe I didn't do something correctly, but I think in the end the approach of manually listing each file is the right way to go, since with CSS order does matter. – David Savage Feb 13 at 19:04
You could still use this approach: Instead of "require_tree ..." just add a line for each individual file. This will make SASS import the files in the correct order. Regarding the solution you are now using, please have a look at this post that I just found: stackoverflow.com/questions/7046495/… Make sure to include the depends_on directivie in your application.css file. – blackbird07 Feb 13 at 21:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.