Closed (cannot reproduce)
Project:
Sasson
Version:
7.x-2.1
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
11 May 2012 at 19:35 UTC
Updated:
22 Jun 2012 at 15:19 UTC
Trying to import the Blueprint grid.
@import "blueprint/grid";'
...and it does not seem to be importing. Getting 'SassContextException: Undefined Mixin: column' errors when trying to include any grid elements. I've successfully used the 960 grid and other Compass imports but having problems with any Blueprint imports.
This is basically my setup.
$blueprint_grid_columns: 24;
$blueprint_grid_width: 30px;
$blueprint_grid_margin: 10px;
// Sidebars widths
$sidebar-first: [sidebar-first];
$sidebar-second: [sidebar-second];
@import "blueprint/grid";
// Sidebars
#sidebar-first {
@include column(3);
}
Comments
Comment #1
tsi commentedWhat if you simply
@import "blueprint";Comment #2
Brian Toombs commentedTried some more testing using various paths. Still no luck. Although I do not get an error that the file was not found. Just that it was an undefined mixin. Which would make me think my syntax is off, but as far as I can tell the syntax I'm using is correct.
Can you think of any other way to check if a partial is getting loaded properly other than just trying to use a mixin?
Comment #3
tsi commentedThis actually works fine for me.
If I do:
(On a fresh sasson sub-theme)
I get :
yes, put
body {background: crimson;}in it, or something.Comment #4
tsi commented