2010-04-16 05:23:14 +00:00
|
|
|
@mixin showgrid($image: "grid.png") {
|
|
|
|
background: image_url($image);
|
|
|
|
}
|
2010-04-11 09:24:24 +00:00
|
|
|
|
|
|
|
@mixin blueprint-debug($grid_image: unquote("grid.png")) {
|
|
|
|
// Use this class on any column or container to see the grid.
|
|
|
|
// TODO: prefix this with the project path.
|
|
|
|
.showgrid {
|
2010-04-16 05:23:14 +00:00
|
|
|
@include showgrid($grid_image);
|
|
|
|
}
|
|
|
|
}
|