You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changing "background-color:$ghost" to "background-color:red" does not cause a change in the compiled output until saving main.scss after saving _nav.scss.
ie, change nav, save nav does not work, but change nav, save nav, and then save main works.
The text was updated successfully, but these errors were encountered:
Given this:
PIPELINE_CSS = {
'screen': {
'source_filenames': (
'css/*.css',
'sass/main.scss',
),
'output_filename': 'css/screen.css',
'variant': 'datauri',
'extra_context': {
'media': 'screen,projection',
},
},
}
PIPELINE_COMPILERS = (
'pipeline.compilers.coffee.CoffeeScriptCompiler',
'pipeline_compass.compiler.CompassCompiler',
)
And scss file main.scss
@import "compass/css3";
@import "nav";
And the scss file _nav.scss
.navbar {
background-color:$ghost;
}
Changing "background-color:$ghost" to "background-color:red" does not cause a change in the compiled output until saving main.scss after saving _nav.scss.
ie, change nav, save nav does not work, but change nav, save nav, and then save main works.
The text was updated successfully, but these errors were encountered: