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
I would be interested in putting together some documentation as I go through learning how this works. Would you be available to answer some questions as I go through?
This would be a complete beginners guide perspective, I have no experience in Sass or compass and I think some of my questions come from there.
First issue is using the colors and tints that are automatically generated. I am trying to use nth($secondary, 2) my code looks like: @import "global/colors";
a {
color: nth($secondary, 2);
}
I get the error:
List index is 2 but list is only 1 item long for 'nth'
I've tried many combinations such as $secondary(2);
color: nth($secondary, 1); does output a css rule,but it's not written. Putting specific css or even a variable color in the project.scss works.
I suspect this is due to inexperience in sass. But I don' tmind writing up documentation if I figure this out and I am reading a compass sass book.
The text was updated successfully, but these errors were encountered:
Sections to consider for documentation:
1 Getting installed (pretty well documented already)
2 Getting started ( also pretty well covered, but I would like to cover from a more tutorial perspective)
3 Exporting to a drupal theme
@nicxvan There isn't really "exporting to a Drupal theme" per se, there is creation of a Compass extension. That documents how to create and use a Compass extension from the SP you create, which can then be pulled into any project, including a Drupal theme
Thanks, I'll look into the link you sent. I should have been clearer, I didn't mean an export as in a fully functional theme but more of a how to take the information from the Style Prototype and getting it into something like zen, omega or your own aurora with the least pain.
I would be interested in putting together some documentation as I go through learning how this works. Would you be available to answer some questions as I go through?
This would be a complete beginners guide perspective, I have no experience in Sass or compass and I think some of my questions come from there.
First issue is using the colors and tints that are automatically generated. I am trying to use nth($secondary, 2) my code looks like:
@import "global/colors";
a {
color: nth($secondary, 2);
}
I get the error:
List index is 2 but list is only 1 item long for 'nth'
I've tried many combinations such as $secondary(2);
color: nth($secondary, 1); does output a css rule,but it's not written. Putting specific css or even a variable color in the project.scss works.
I suspect this is due to inexperience in sass. But I don' tmind writing up documentation if I figure this out and I am reading a compass sass book.
The text was updated successfully, but these errors were encountered: